Question about syms
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
Hi, hey im trying to operate with a symbolic expression, but i have this problem:
cpcb=-7.206e-5 syms t
cpcb*t
ans =
-(5317089511806041*tsymb)/73786976294838206464
I need the data from the operation but i dont need in such a weird/cmplex view. Is there any way to show the symbolic operation as -7.206e-5*tsymb??? Thx
0 件のコメント
回答 (2 件)
Walter Roberson
2011 年 5 月 2 日
vpa(ans)
1 件のコメント
Paulo Silva
2011 年 5 月 2 日
This is just in case Camilo wants the value in that exact form
a=sym2poly(vpa(cpcb*t))
format short
a(1) %this is the value -7.206e-5
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!