Why is 10^5 more expensive than 10e5?

조회 수: 4 (최근 30일)
Mahdi
Mahdi 2014년 5월 30일
편집: dpb 2014년 5월 30일
As Jan mentioned in this post, what's the reason behind it?

채택된 답변

dpb
dpb 2014년 5월 30일
10^N is a computational expression whereas 10EN is a literal constant. So, the former requires computation (and the exponential is moderately compute-intensive) whereas the latter simply is a conversion from character to numeric representation. Takes (comparatively) little processing internally to do so.
  댓글 수: 2
Mahdi
Mahdi 2014년 5월 30일
Thank you :)
dpb
dpb 2014년 5월 30일
편집: dpb 2014년 5월 30일
One additional comment and a difference between compiled languages and interpreted ones is that 10^5 is, while a numeric expression, ultimately a constant. Compiled languages will evaluate this at compile-, not run- time and store the result in the object file so from a computational standpoint in that case they're the same.
The difference is that in an interpreted language, the expression is not evaluated until run-time(+) and if it were in a loop it would be evaluated every time as well.
(+) This is w/o the JIT compiler, of course, which may (or again may not, TMW doesn't and won't say :) ) be able to recognize the constant and do it only once, too. But, in general, the admonition to avoid computing constants in Matlab if possible is still a good suggestion.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB Compiler에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by