How can I SOLVE THIS PROJECT
Mostra commenti meno recenti

2 Commenti
anas khalid
il 24 Apr 2018
Ashik Mahamud
il 15 Nov 2021
I'm new, i Don't understand how to solve it. Plz help me to solve the project
Risposte (1)
raymond keen
il 17 Apr 2019
Modificato: Walter Roberson
il 17 Apr 2019
w0 = 2.5 ;
E = 50000;
I = 30000;
L=600;
t = 0;
v = 599;
while (abs(t-v)>0.0000001)
z = (t+v)/2;
ydiff = (w0)/(120*E*I*L)*(-5*z^4+6*L^2*z^2-L^4);
t_val = (w0)/(120*E*I*L)*(-5*t^4+6*L^2*t^2-L^4);
v_val = (w0)/(120*E*I*L)*(-5*v^4+6*L^2*v^2-L^4);
if (sign(ydiff) ~= sign(v_val))
t = z;
else
v = z;
end
end
x = (t+v)/2
ydiff = (w0)/(120*E*I*L)*(-5*x^4+6*L^2*x^2-L^4)
Categorie
Scopri di più su Resampling Techniques in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!