Which format can be choosen
조회 수: 1 (최근 30일)
이전 댓글 표시
syms x
f = - 0.00000000000000000000000044574112852848068606808271927672*x^21 + 0.0000000000000000030044127779970749176557242324773*x^20 - 0.000000000056302615985881136490640044463735*x^19 + 0.00000000000017378935724165993341192746035199*x^18 - 0.0000000014891215183454938397421269093944*x^17 + 0.00000001363607885771973858689574596145*x^16;
%% Can it be possible to express the above expression in exponential form
(e.g 0.00000001363607885771973858689574596145 = 1.3636 * 10^(- 8) )
댓글 수: 0
채택된 답변
Steven Lord
2021년 6월 3일
syms x
f = - 0.00000000000000000000000044574112852848068606808271927672*x^21 + 0.0000000000000000030044127779970749176557242324773*x^20 - 0.000000000056302615985881136490640044463735*x^19 + 0.00000000000017378935724165993341192746035199*x^18 - 0.0000000014891215183454938397421269093944*x^17 + 0.00000001363607885771973858689574596145*x^16
vpa(f, 5)
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Error Functions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!