solving quartic eqn returns root

조회 수: 1 (최근 30일)
Babu Raj AP
Babu Raj AP 2020년 5월 16일
답변: madhan ravi 2020년 5월 16일
When I solve a quartic equation using solve by following the following steps
syms H Bo
eqn=H^4 + Bo/15*H^3 + 24/15*H + 4/15*Bo==0;
solx=solve(eqn,H)
I get no explicit functional expression for H in terms of Bo but the following result:
solx =
root(z^4 + (Bo*z^3)/15 + (8*z)/5 + (4*Bo)/15, z, 1)
root(z^4 + (Bo*z^3)/15 + (8*z)/5 + (4*Bo)/15, z, 2)
root(z^4 + (Bo*z^3)/15 + (8*z)/5 + (4*Bo)/15, z, 3)
root(z^4 + (Bo*z^3)/15 + (8*z)/5 + (4*Bo)/15, z, 4)
How do I get solve the above quartic equation and get an explicit expression for H in terms of Bo?

채택된 답변

madhan ravi
madhan ravi 2020년 5월 16일
solx = vpa(solve(eqn,H,'Maxdegree',4))

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Stability Analysis에 대해 자세히 알아보기

제품


릴리스

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by