Clear Filters
Clear Filters

25^23 without approximation

4 views (last 30 days)
Sakunrat Jaejaima
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.

Accepted Answer

Titus Edelhofer
Titus Edelhofer on 2 Jul 2015
Use vpa from symbolic toolbox:
digits(50);
x = vpa(25);
x23 = x^23
Titus
  5 Comments
Titus Edelhofer
Titus Edelhofer on 3 Jul 2015
I'm glad to hear... then please mark the question as answered ...
Stephen23
Stephen23 on 10 Jul 2015
It seems like the right answer, so I accepted it for them.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!