シンボリック変数を用いて解いた連立方程式の解の表示形式について
21 次查看(过去 30 天)
显示 更早的评论
シンボリック変数を用いて以下のように連立1次方程式を解きました。
この時の解の表示形式に関する質問です。
syms x y;
[solx,soly] = solve(y-a*x-b == 0, y-c*x-d == 0);
※a,b,c,dは定数として定義済み 計算後,コマンドウインドウでsolx,solyを表示させると, 分数表示になり,シンボリック変数としてワークスペースに登録された状態になります。
これ以降の計算で,solx,solyを利用する都合上, シンボリック変数ではなく, 通常の変数に変更したい(さらに指数表示にしたい)のですが, これは可能でしょうか?
1 个评论
Walter Roberson
2016-9-24
Approximate translation:
By using a symbolic variable has solved the system of linear equations as follows.
I have a question about the display format of the solution at this time.
syms x y;
[Solx, soly] = solve (y-a * x-b == 0, y-c * x-d == 0);
a, b, c, d after the pre-defined calculation as a constant, solx in the command window, and to display the soly, it becomes a fraction display will be in the state that has been registered in the workspace as a symbolic variable.
In this subsequent calculations, solx, the convenience to use the soly, rather than the symbolic variables, you want to change to the normal variables (still want to index display) you, this is possible?
采纳的回答
更多回答(1 个)
Walter Roberson
2016-9-24
I think you might be looking for subs()
For example,
subs(soly, {a, b, c, d}, {27, 48, 53.2, pi})
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!