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!