Plot does not appear.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Ömer Fatih Özdemir
am 11 Apr. 2022
Bearbeitet: Torsten
am 12 Apr. 2022
for E1=1:73
W=15;
L=1.3;
w=0.25;
h=0.075;
I=(w*h^3)/12;
Deflection5 = (W.*L.^3)/(3.*E1.*I)
plot(E1,Deflection5)
end
Guys why it does not appear what is the problem? I tried to make plot of the E1 values and Deflection while both values changing.
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Davide Masiello
am 11 Apr. 2022
Bearbeitet: Davide Masiello
am 11 Apr. 2022
No need for a for loop
E1=1:73;
W=15;
L=1.3;
w=0.25;
h=0.075;
I=(w*h^3)/12;
Deflection5 = (W.*L.^3)./(3.*E1.*I);
plot(E1,Deflection5)
Siehe auch
Kategorien
Mehr zu Legend finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!