Community Profile

photo

Vipin Parthan


Last seen: nästan 2 år ago Active since 2020

Statistics

  • First Answer

View badges

Content Feed

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

nästan 4 år ago | 0