photo

sri harsha juttiga


Last seen: 1 year 前 自 2020 起处于活动状态

Followers: 0   Following: 0

统计学

  • First Answer

查看徽章

Feeds

排序方式:

已回答
[Assignment]Write a function called saddle that finds saddle points in the input matrix M.
function [indices,j] = saddle(M) indices=[]; [m,n]=size(M); f=0; for ii=1:m for jj=1:n a=M(ii,jj); x=...

4 years 前 | 1