Using Symbolic math toolbox online?
13 ビュー (過去 30 日間)
古いコメントを表示
I have bought Matlab and use it online. Now bought the symbolic math toolbox but can't find it working online. Can it be done and if so what do I need to do?
3 件のコメント
Israel UDOH
2024 年 11 月 1 日
編集済み: Walter Roberson
2024 年 11 月 1 日
syms(r1,r2,r3,u1,u2,b1,b2,a1,a2,y)
J = [r1-y, u1, -a1; u2, r2-y, -a2; b1, b2, r3-y]
det_J = det(J);
y_values = solve(det_J == 0, y);
y_values
Walter Roberson
2024 年 11 月 1 日
It seems unlikely that would work. That syms() call requires that all of the named variables already be defined. It is more likely that you would want
syms r1 r2 r3 u1 u2 b1 b2 a1 a2 y
回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Assumptions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!