Plot does not appear.

11 visualizzazioni (ultimi 30 giorni)
Ömer Fatih Özdemir
Ömer Fatih Özdemir il 11 Apr 2022
Modificato: Torsten il 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.

Risposta accettata

Torsten
Torsten il 11 Apr 2022
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)
  6 Commenti
Ömer Fatih Özdemir
Ömer Fatih Özdemir il 11 Apr 2022
Modificato: Ömer Fatih Özdemir il 11 Apr 2022
for example, how to use two plot in legend?
L1=linspace(0.001,1.3);
Deflection1 = (W.*L1.^3)/(3.*E.*I);
plot(L1,Deflection1)
this and
Deflection5
Torsten
Torsten il 12 Apr 2022
Modificato: Torsten il 12 Apr 2022
plot(L1,Deflection1)
hold on
plot(L1,Deflection5)

Accedi per commentare.

Più risposte (1)

Davide Masiello
Davide Masiello il 11 Apr 2022
Modificato: Davide Masiello il 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)
  1 Commento
Ömer Fatih Özdemir
Ömer Fatih Özdemir il 11 Apr 2022
Is it possible to make it with for loop?

Accedi per commentare.

Categorie

Scopri di più su Animation 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!

Translated by