25^23 without approximation
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sakunrat Jaejaima
el 2 de Jul. de 2015
Comentada: Stephen23
el 10 de Jul. de 2015
I want to get the answer with no approximation
I do 25^23 without approximation.
0 comentarios
Respuesta aceptada
Titus Edelhofer
el 2 de Jul. de 2015
Use vpa from symbolic toolbox:
digits(50);
x = vpa(25);
x23 = x^23
Titus
5 comentarios
Titus Edelhofer
el 3 de Jul. de 2015
I'm glad to hear... then please mark the question as answered ...
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!