photo

Vipin Parthan


Last seen: 2 years ago Active since 2020

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
[Assignment]Write a function called saddle that finds saddle points in the input matrix M.
function indices=saddle(M) [r,c]=size(M); %Compute largest row element and the least column element. rMax=max(M,[],2); cMin=...

4 years ago | 0