Totally evaluate a result
2 ビュー (過去 30 日間)
古いコメントを表示
I get a result from:
disp(B1);
76533567789*cos(665434345667778/334545654433775)/65343456677
How do I get MATLAB to totally evaluate it.
0 件のコメント
採用された回答
Star Strider
2016 年 4 月 29 日
編集済み: Star Strider
2016 年 4 月 29 日
It looks like a Symbolic Math Toolbox result.
Use the vpa function:
B1v = vpa(76533567789*cos(665434345667778/334545654433775)/65343456677)
B1v =
-0.47574155170905596534680626064073
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!