統計
MATLAB Answers
6 質問
0 回答
ランク
of 171,210
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
質問
Can someone help me convert this if-else statement to a switch statement? Its a homework problem that requires us to answer whether it would be quicker to write it as a switch or as an if-else statement. Im most confused by the for loop at the top.
for i = 1:2000 for j = 1:6 if j == 1 result = 20; elseif j == 2 result = 30; elseif j == 3 result ...
約7年 前 | 0 件の回答 | 0
0
回答質問
Can someone help me write this into a series?
S=2*r^3 + 4*r^5 + 6*r^7+ 8*r^9 + ... + (2n)*r^(2n+1)
約7年 前 | 3 件の回答 | 0
3
回答質問
how to have variables from one file automatically read into another file
I have variables in file1.m that I want to be automatically transferred to an equation in file2.m. Ive tried using the load tool...
約7年 前 | 1 件の回答 | 0
1
回答質問
How to write this summation series?
S=2*r^3 + 4*r^5 + 6*r^7+ 8*r^9 + ... + (2n)*r^(2n+1). Display the sum in the main script with 3 decimal places.
約7年 前 | 1 件の回答 | 0
1
回答質問
does anyone know how to rewrite this statement to a switch/case statement? thanks
n=input('Please enter a positive or negative integer: '); if n < -2 || n > 5 disp(n/2) else if n <= 3 ...
約7年 前 | 0 件の回答 | 0
0
回答質問
does anyone know how to rewrite this into switch/case statements
n=input('Please enter a positive or negative integer: '); if n < -2 || n > 5 disp(n/2) else if n <= 3 ...
約7年 前 | 1 件の回答 | 0
