Displaying unreal numbers in system of equations
1 次查看(过去 30 天)
显示 更早的评论
I have this system of equations that I'm trying to run, but I don't know what to do to display the imaginary numbers in the solution. This is what I have so far:
syms K
eqn = K == (981 - 250*(K + (3^(1/2)*5^(1/2)*(400*K^2 + 981)^(1/2))/50)^2)^(1/2)/20;
sol = vpasolve(eqn,K);
disp('K=')
disp(sol)
Any help is greatly appreciated.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Systems of Nonlinear Equations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!