MADDINENI REVANTH SAI
自 2019 起处于活动状态
Followers: 0 Following: 0
Feeds
已回答
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...
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...
5 years 前 | 0