Short format display after using solve command
2 ビュー (過去 30 日間)
古いコメントを表示
Hi,
Although I have chosen the short format in the code and command window display preferences. The results after using a "solve" command are displayed as:
y =
7770/23 - (32083660183526053*R)/12947848928690176000
Can anybody help me so that I can view the numerical values in short format? Like:
y = 337.83 - 0.0024779*R
Thanks
0 件のコメント
採用された回答
Walter Roberson
2012 年 8 月 10 日
Use vpa()
3 件のコメント
Gombo Choigaalaa
2018 年 9 月 29 日
編集済み: Walter Roberson
2018 年 9 月 29 日
>> x=3^4/(2^3+2-4.5);
>> x=14.7273 -looks ok but not short.
>> vpa(x)
ans =
14.727272727272727272727272727273 -is not short at all LOL
Walter Roberson
2018 年 9 月 29 日
By default vpa() pays attention to the current digits() setting, which defaults to 32. You can specify how many digits you want at the time of the vpa() call. For example,
>> vpa(x,5)
ans =
14.727
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Numbers and Precision についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!