photo

SIVA SAI AKULA


Last seen: 2 years ago Active since 2020

Followers: 0   Following: 0

Statistics

All
  • Solver
  • First Answer
  • Explorer

View badges

Feeds

View by

Answered
how to find the element which is greater than or equal to its row and smaller or equal to its column in a matrix
function indices = saddle(M) row_max = max(M,[],2); col_min = min(M,[],1); [row,col]=find((M == row_max)....

4 years ago | 1