gourav naik
Followers: 0 Following: 0
Feeds
已回答
[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)); ...
[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)); ...
4 years 前 | 0