photo

Vishnu V


Last seen: 10 months ago Active since 2022

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
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 ago | 0