Feeds
답변 있음
Saddle points of a 2D matrix
% this is my answer function indices=saddle(M) [r,c]=size(M); indices=[]; for i=1:r for j=1:c if M(i,j) >= max...
Saddle points of a 2D matrix
% this is my answer function indices=saddle(M) [r,c]=size(M); indices=[]; for i=1:r for j=1:c if M(i,j) >= max...
대략 2년 전 | 0
