photo

Paul


Last seen: 11 meses hace Con actividad desde 2023

Followers: 0   Following: 0

Estadística

  • Explorer
  • First Review
  • First Answer

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(y,m,d); if ~isscalar(y)||~isscalar(m)||~isscalar(d)||y~=fix(y)||m~=fix(m)||d~=fix(d); valid = ...

más de 1 año hace | 0

Respondida
Write a function three positive integer scalar inputs year, month, day.
function valid = valid_date(y,m,d); if ~isscalar(y)||~isscalar(m)||~isscalar(d)||y~=fix(y)||m~=fix(m)||d~=fix(d); valid = ...

más de 1 año hace | 0