How can I SOLVE THIS PROJECT
Mostrar comentarios más antiguos

2 comentarios
anas khalid
el 24 de Abr. de 2018
Ashik Mahamud
el 15 de Nov. de 2021
I'm new, i Don't understand how to solve it. Plz help me to solve the project
Respuestas (1)
raymond keen
el 17 de Abr. de 2019
Editada: Walter Roberson
el 17 de Abr. de 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)
Categorías
Más información sobre Assembly en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!