MATLAB can't resolve equation?
1 回表示 (過去 30 日間)
古いコメントを表示
Hello guys, following equation:
x = (a * (b + x)) / b
It's not resolved by matlab with solve() function, but it's resolved correctly on wolframalpha.com website. Why? Thanks!
1 件のコメント
John D'Errico
2016 年 3 月 14 日
編集済み: John D'Errico
2016 年 3 月 14 日
It IS solved properly using solve. As long as you use solve properly.
回答 (1 件)
Star Strider
2016 年 3 月 14 日
This works for me (in R2016a):
syms a b x
x = solve(x == (a * (b + x)) / b)
x =
-(a*b)/(a - b)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!