Loop for repeating a process multiple times

2 ビュー (過去 30 日間)
Shahab Khan
Shahab Khan 2019 年 11 月 19 日
コメント済み: Shahab Khan 2019 年 11 月 20 日
Hello
I am trying to write a loop which can perfrom same calculation for different values.
I have variables:
E = 100;
I = [1 2 3 4 . . . . 100] % size 101*1
C = 1;
Loss = 13;
Loss_E = (E*Loss)/100;
T_s = E / I*C;
T_l = Loss_E / I * C
T = T_s + T_l
Can somehelp me with writing a loop which perform calculation for
T
for all values of
I
.Thanks

採用された回答

Erivelton Gualter
Erivelton Gualter 2019 年 11 月 19 日
You need to use the ./ operator to perform division of arrays.
Try this
E = 100;
I = 1:100;
C = 1;
Loss = 13;
Loss_E = (E*Loss)/100;
T_s = E./I*C;
T_l = Loss_E./I*C;
T = T_s + T_l
  1 件のコメント
Shahab Khan
Shahab Khan 2019 年 11 月 20 日
Thank you sorted.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by