Vishnu V
Followers: 0 Following: 0
Feeds
已回答
write a function called saddle in the input matrix M , the function should return with exactly two column vector and each row of output vector represent dimensions of saddle point in the input matrix M
function indices = saddle(M) [m,n]=size(M); indices = []; for ii = 1 : m %accessing each elements of M for jj = 1 : n...
write a function called saddle in the input matrix M , the function should return with exactly two column vector and each row of output vector represent dimensions of saddle point in the input matrix M
function indices = saddle(M) [m,n]=size(M); indices = []; for ii = 1 : m %accessing each elements of M for jj = 1 : n...
2 years 前 | 0