Loop for repeating a process multiple times

3 次查看(过去 30 天)
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops 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