Command use to convert expression E to numeric form

Command use to convert expression E to numeric form

4 Kommentare

Could you give an example?
I do know either.. it just stated like that :/
i think it's referring to E for the e^
exp(1)
for the constant e
exp(x)
for

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Star Strider
Star Strider am 30 Jun. 2021

1 Stimme

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.
Jan
Jan am 30 Jun. 2021
Maybe you mean the output to the command window?
format short
pi * 1e8
ans = 3.1416e+08
format long
pi * 1e8
ans =
3.141592653589793e+08
format long g
pi * 1e8
ans =
314159265.358979
You have more control using fprintf or sprintf to create the output.

Tags

Gefragt:

am 30 Jun. 2021

Beantwortet:

am 30 Jun. 2021

Community Treasure Hunt

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

Start Hunting!

Translated by