How to plot this for loop?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
for i=0:0.01:1;
CompMod=(Gmodulus*i)+(Emodulus*(1-i));
end
plot(i,CompMod)
How do I plot this simple code? Gmod and Emod have been previously indexed
0 Commenti
Risposte (1)
Ameer Hamza
il 11 Ott 2020
You need to save the values from each iteration in an array. Check this code
Gmodulus = 1; % example values
Emodulus = 2;
x = 0:0.01:1;
CompMod = zeros(size(x));
for i = 1:numel(x)
CompMod(i) = (Gmodulus*x(i))+(Emodulus*(1-x(i)));
end
plot(x,CompMod)
0 Commenti
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!