25^23 without approximation
2 ビュー (過去 30 日間)
古いコメントを表示
I want to get the answer with no approximation
I do 25^23 without approximation.
0 件のコメント
採用された回答
Titus Edelhofer
2015 年 7 月 2 日
Use vpa from symbolic toolbox:
digits(50);
x = vpa(25);
x23 = x^23
Titus
5 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!