25^23 without approximation
2 views (last 30 days)
Show older comments
Sakunrat Jaejaima
on 2 Jul 2015
Commented: Stephen23
on 10 Jul 2015
I want to get the answer with no approximation
I do 25^23 without approximation.
0 Comments
Accepted Answer
Titus Edelhofer
on 2 Jul 2015
Use vpa from symbolic toolbox:
digits(50);
x = vpa(25);
x23 = x^23
Titus
5 Comments
More Answers (0)
See Also
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!