computing square of an exponential
이전 댓글 표시
how to compute square of an exponential which is in the form of exp2(some value)
댓글 수: 2
Azzi Abdelmalek
2012년 9월 12일
what is exp2?
Star Strider
2012년 9월 12일
exp2 Y = a*exp(b*x)+c*exp(d*x)
Is that what you are referring to?
답변 (1개)
Azzi Abdelmalek
2012년 9월 12일
편집: Azzi Abdelmalek
2012년 9월 12일
x=100%
res=exp(x)^2
%or
res=exp(x*2)
댓글 수: 4
PK
2012년 9월 12일
Azzi Abdelmalek
2012년 9월 12일
exp^2(100) don't work. use exp(100)^2 or exp(2*100)
PK
2012년 9월 12일
Azzi Abdelmalek
2012년 9월 12일
yes in theory, but in matlab coding : exp^2(100) is false
카테고리
도움말 센터 및 File Exchange에서 Linear Algebra에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!