photo

Amandeep Kaur


自 2020 起处于活动状态

Followers: 0   Following: 0

统计学

  • First Answer
  • Revival Level 1

查看徽章

Feeds

排序方式:

已回答
[Assignment]Write a function called saddle that finds saddle points in the input matrix M.
function [indices] = saddle(M) [a,~] = size(M); j = 1;i = 1; [max_M,~] = max(M,[],2); count = 0; for ii = 1:a [c,d] = find...

4 years 前 | 0