You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are sometimes when I had to use a workaround to the fact that you cannot place variables next to e. 2.4e$var isn't allowed.
foo:
m=3
eval "2.5e$m;"
This will give a error.
So, one way of solving it is e(value,n). Which is the equivalent of {value}e{n} where value, and n is a number. Or maybe unnecessary, and there should be some fixes to the parsing of 2.5e$m.
EDIT: {value}*10^{n} will do too, but ideally I would like to see better parsing.
The text was updated successfully, but these errors were encountered:
There are sometimes when I had to use a workaround to the fact that you cannot place variables next to e. 2.4e$var isn't allowed.
This will give a error.
So, one way of solving it is e(value,n). Which is the equivalent of {value}e{n} where value, and n is a number. Or maybe unnecessary, and there should be some fixes to the parsing of 2.5e$m.
EDIT: {value}*10^{n} will do too, but ideally I would like to see better parsing.
The text was updated successfully, but these errors were encountered: