photo

David


Last seen: 1 year ago Active since 2023

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
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 s = []; % Check the dimensions to ...

1 year ago | 0