photo

Jatan Shah


Last seen: presque 3 ans il y a Actif depuis 2021

Followers: 0   Following: 0

Statistiques

All
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
Write a function called valid_date that takes three positive integer scalar inputs year, month, day. If these three represent a valid date, return a logical true, otherwise false. The name of the output argument is valid.
function valid = valid_date (year, month, day) if nargin<3 valid = false; elseif ~isscalar(year) || year<1 || yea...

presque 3 ans il y a | 3