Community Profile

photo

Paul


Last seen: 7 months ago Active since 2023

Followers: 0   Following: 0

Statistics

  • Explorer
  • First Review
  • First Answer

View badges

Feeds

View by

Answered
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 = ...

12 months ago | 0

Answered
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 = ...

12 months ago | 0