Community Profile

photo

gourav naik


Last seen: mer än 2 år 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 out=saddle(m) [x,y]=size(m); ind=[]; for i=1:x for j=1:y a=max(m(i,:)); b=min(m(:,j)); ...

ungefär 4 år ago | 0