photo

Jatan Shah


Last seen: más de 3 años hace Con actividad desde 2021

Followers: 0   Following: 0

Estadística

All
  • First Answer
  • Solver

Ver insignias

Feeds

Ver por

Respondida
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...

más de 3 años hace | 3