How to solve for a different variable
显示 更早的评论
I am trying to solve for a and e in terms of rpark, but MATLAB is giving me an answer for rpark and e in terms of a.
rpark = 1750.5:.01:10000;
syms a e rpark
S = solve(a == (rmoon*(1+e*cos(-20)))/(1-e^2), a == (rpark*(1-e))/(1-e^2));
S.a
S.e
If anyone knows how to correct this it would be greatly appreciated.
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Numeric Solvers 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!