統計
MATLAB Answers
0 質問
5 回答
ランク
of 177,276
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
回答済み
How many positive entries in array
function count = positiveEntries(arr) count = sum(arr > 0); end
How many positive entries in array
function count = positiveEntries(arr) count = sum(arr > 0); end
1日 前 | 0
回答済み
Write a function to calculate the area of a circle
function area = circleArea(radius) area = pi * radius^2; end
Write a function to calculate the area of a circle
function area = circleArea(radius) area = pi * radius^2; end
1日 前 | 0
回答済み
Write a MATLAB function that returns the square of a number.
function sqr=sqr(x) sqr=x^2; end
Write a MATLAB function that returns the square of a number.
function sqr=sqr(x) sqr=x^2; end
1日 前 | 0
