Simplify a symbolic expression

1 回表示 (過去 30 日間)
Gerard Nagle
Gerard Nagle 2021 年 4 月 6 日
コメント済み: Gerard Nagle 2021 年 4 月 6 日
Hi there
I'm was working thought a old document that has a MuPAD content in it.
when I try to do tha same in MATLAB with symbolic,
syms s
T=21.0325
L=3.5890
X=(0.6*T)*((s+(1/L))^2)/s
expand(X)
I get (25239*s)/2000 + 12619500/(12880921*s) + (25239/3589)
The numbers are correct, but is there a way to simplify further to correcpsond to the old MuPAD output?
trying simplify(X) I get (25239*(s + (1000/3589))^2)/(2000*s)
thanks in advance
Gerard

採用された回答

Stephan
Stephan 2021 年 4 月 6 日
syms s
T=21.0325
L=3.5890
X=(0.6*T)*((s+(1/L))^2)/s
vpa(expand(X),10)
  1 件のコメント
Gerard Nagle
Gerard Nagle 2021 年 4 月 6 日
Thanks Stephan, appreciate your time and reply. Gerard

サインインしてコメントする。

その他の回答 (0 件)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by