How can I SOLVE THIS PROJECT
Afficher commentaires plus anciens

2 commentaires
anas khalid
le 24 Avr 2018
Ashik Mahamud
le 15 Nov 2021
I'm new, i Don't understand how to solve it. Plz help me to solve the project
Réponses (1)
raymond keen
le 17 Avr 2019
Modifié(e) : Walter Roberson
le 17 Avr 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)
Catégories
En savoir plus sur Assembly dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!