How do I code rearrange equation?
古いコメントを表示
How do i code this to show the equation rearrange to find t????
回答 (1 件)
2 件のコメント
Torsten
2022 年 11 月 1 日
What about the second solution of the quadratic ?
Solve does give both
syms xt x0 v0 t a
eqn = xt-x0 == v0*t+1/2*a*t^2
St = solve(eqn,t)
カテゴリ
ヘルプ センター および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


