Command use to convert expression E to numeric form
이전 댓글 표시
Command use to convert expression E to numeric form
댓글 수: 4
Walter Roberson
2021년 6월 30일
Could you give an example?
Su Hyun Kim
2021년 6월 30일
Su Hyun Kim
2021년 6월 30일
Walter Roberson
2021년 6월 30일
exp(1)
for the constant e
exp(x)
for 
답변 (2개)
Star Strider
2021년 6월 30일
1 개 추천
If ‘E’ is a symbolic expression (we have no idea exactly what it is), then matlabFunction could be appropriate to turn it into an anonymous function that could be executed numerically. If it is a symbolic scalar or vector, then vpa or double would be appropriate, depending on the desired result.
If none of these are appropriate, I will delete this Answer.
Maybe you mean the output to the command window?
format short
pi * 1e8
format long
pi * 1e8
format long g
pi * 1e8
You have more control using fprintf or sprintf to create the output.
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!