photo

Aramis


Last seen: 3日 前 2024 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

0 質問
6 回答

ランク
12,737
of 297,503

評判
4

コントリビューション
0 質問
6 回答

回答採用率
0.00%

獲得投票数
3

ランク
 of 20,449

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 159,017

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • First Answer

バッジを表示

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
The best solution function s = saddle(M) % Create logical vector that are true for each saddle condition separately m...

9ヶ月 前 | 0

回答済み
Sparse Matrix, struct, structure, Using cell arrays
function matrix = sparse2matrix(cellvec) matrix = ones(cellvec{1}) * cellvec{2}; for x=3:length(cellvec) matr...

10ヶ月 前 | 0

回答済み
next prime number using While loops
THE BEST ANSWER function k = next_prime(n) k=n; while isprime(k)==false || k==n k = k+1; end end ...

約1年 前 | 0

回答済み
Write a function called valid_date that takes three positive integer scalar inputs year, month, day. If these three represent a valid date, return a logical true, otherwise false. The name of the output argument is valid.
The best answer function valid = valid_date(year,month,day) if not(isscalar(year))|| not(isscalar(month)) || not(isscalar(...

約1年 前 | 1