Effacer les filtres
Effacer les filtres

Loop for repeating a process multiple times

3 vues (au cours des 30 derniers jours)
Shahab Khan
Shahab Khan le 19 Nov 2019
Commenté : Shahab Khan le 20 Nov 2019
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

Réponse acceptée

Erivelton Gualter
Erivelton Gualter le 19 Nov 2019
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

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Produits


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by