photo

Chandan Kumar


Last seen: plus de 3 ans il y a Actif depuis 2021

Followers: 0   Following: 0

Statistiques

  • Revival Level 1
  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
write a function called saddle in the input matrix M , the function should return with exactly two column vector and each row of output vector represent dimensions of saddle point in the input matrix M
function s = saddle(M) [r, c] = size(M); % Initialize the saddle points to an empty array % Check the dimensions to see if i...

plus de 3 ans il y a | 0

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. If any of the inputs is not
function valid = valid_date(year,month,date) y=year;m=month;d=date; if ~isscalar(y)|| ~isscalar(m) || ~isscalar(d) valid=...

plus de 3 ans il y a | 0