photo

Adam Kevin Francis Baker


2019 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

4 質問
2 回答

ランク
84,209
of 300,847

評判
0

コントリビューション
4 質問
2 回答

回答採用率
100.0%

獲得投票数
0

ランク
 of 21,094

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 171,279

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

スコア
0

バッジ数
0

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

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

平均評価

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

平均いいねの数

  • Thankful Level 2
  • Thankful Level 1

バッジを表示

Feeds

表示方法

質問


use a Loop to repeat an equation using the previous answer as the new variable.
I want to write a loop to do the below all the way up to p340....I do not want to change the name of the variable each time but ...

6年以上 前 | 1 件の回答 | 0

1

回答

質問


Variable changes to previously calculated value each iteration.
Here is the equation I am dealing with p2 = p1./(exp((50)./(29.3.*((T))))); T = 1:340 p1 = 99977 I need to calculate p2 for ...

6年以上 前 | 2 件の回答 | 0

2

回答

回答済み
perform calculation using for loop
Ok I had to do a double for loop to make it work because I was dealing with a matrix so I ended up writing this code to solve my...

7年弱 前 | 0

| 採用済み

回答済み
perform calculation using for loop
This is what I did... for q = 1:numel(p1) q_for(q) = (0.622.*e(q))./(p1(q)); end and for the array operation q_array = ...

7年弱 前 | 0

質問


perform calculation using for loop
So I have to use a for loop because I'm a student and the teacher said so. I've been trying to figure this one out and I'm sure ...

7年弱 前 | 2 件の回答 | 0

2

回答

質問


for loop produces a 103x1 array I need a 1x103 array.
How do I get this for loop to produce a 103X1 array? I do not want to use the transpose function. for ii = 1:numel(H) if H...

7年弱 前 | 1 件の回答 | 0

1

回答