How can i solve this equation ?
이전 댓글 표시
Hi
How ca i solve the attached equation to find lamda ?
When all the other terms are known.
채택된 답변
추가 답변 (1개)
Jorge Mario Guerra González
2017년 1월 19일
Just use the function solve, which uses numerical techniques to find variables.
try this.
syms lambda
Mt=1; % The value of your variables
m=1;
L=1;
lt=1;
%check if I wrote this correctly
eqn= 1+(cos(lambda)*cosh(lambda))+((lambda*Mt/(m*L))*(cos(lambda)*sinh(lambda)-sin(lambda)*cosh(lambda)))-((lt*lambda^3)/m*L^3)*(cosh(lambda)*sin(lambda)+sinh(lambda)*cos(lambda))+ ((Mt*lt*lambda^4)/m^2*L^4)*(1-cosh(lambda)*cos(lambda)) ==0;
value=solve(eqn,lambda) %solution for lamda
댓글 수: 2
Mallouli Marwa
2017년 1월 19일
John D'Errico
2017년 1월 19일
You cannot find an infinite number of solutions. If you tried to write them all down, it would take infinitely long.
카테고리
도움말 센터 및 File Exchange에서 Common Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!