solve and vpasolve command doesn't work
显示 更早的评论
Hello,
I am trying to get a non zero solution of the equation ''delta'' for the variable ''P" with the following code but unable to get the solution by using solve and vpasolve command. I will highly appreciate if somone can help me.
clear all
syms P
%axis([0 2 0 0.0001])
E=200; h1=40; b=20; l=100; a=50; n=1;h0=50;
I0=b*h0^3/12; I1=b*h1^3/12;
L00=sqrt(P/(E*I0-P*n));
L0=simplify(L00);
L11=sqrt(P/(E*I1-P*n));
L1=simplify(L11);
delta1=(L1*sin(L0*a)*cos(L1*(l-a)))-(L0*cos(L0*a)*sin(L1*(l-a)));
delta=simplify(delta1);
F=vpasolve(delta,P)
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


