シンボリック変数を用いて解いた連立方程式の解の表示形式について
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
シンボリック変数を用いて以下のように連立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 Kommentar
Walter Roberson
am 24 Sep. 2016
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?
Akzeptierte Antwort
Weitere Antworten (1)
Walter Roberson
am 24 Sep. 2016
I think you might be looking for subs()
For example,
subs(soly, {a, b, c, d}, {27, 48, 53.2, pi})
0 Kommentare
Siehe auch
Kategorien
Mehr zu Equation Solving finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!