Sam Sims
2017 年からアクティブ
Followers: 0 Following: 0
統計
MATLAB Answers
3 質問
0 回答
ランク
of 154,057
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
質問
I am currently trying to write a code that spits out all the prime numbers less than an input, n, that also have a difference of 2. So, 3 and 5, 5 and 7, and 17 and 19 and I also need to put them into a 2 column matrix. This is what I have so far.
tableName = zeros(1,2); n = input('Integer'); a = primes(n) I get a vector of all the prime numbers less than or equa...
約7年 前 | 1 件の回答 | 0
1
回答質問
I am currently trying to make a column array out of the different values that are produced during a while loop. A new value of n is computed each time the loop executes. Now how can I put all those values into a column array?
n = input('Integer'); i = 1; while n ~= 1; if mod(n,2) == 0; n = n/2; else n = 3*n ...
約7年 前 | 1 件の回答 | 0
1
回答質問
I am trying to build this code to where I can type either YES or NO when asked for the input in line 1, but whenever I type NO, an error pops up saying "Matrix dimensions must agree". I am not sure where I am going wrong.
tail_stinger = input('Has a tail/stinger?','s'); if tail_stinger == 'YES' straight_tail = input('Tail straight like a nee...
約7年 前 | 1 件の回答 | 0