Community Profile

photo

MADDINENI REVANTH SAI


Active since 2019

Followers: 0   Following: 0

Statistics

  • First Answer

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 s = saddle(M) [r, c] = size(M); s = []; if r > 1 cols = min(M); else cols = M; end if c > 1 rows...

4 years ago | 0