photo

Vishnu V


Last seen: más de 1 año hace Con actividad desde 2022

Followers: 0   Following: 0

Estadística

  • First Answer

Ver insignias

Feeds

Ver por

Respondida
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...

más de 2 años hace | 0