intermediate exponential calculation goes to infinity

조회 수: 2 (최근 30일)
Albert Hall
Albert Hall 2019년 6월 19일
댓글: Steven Lord 2019년 6월 24일
trying to calculate y = exp(-t).*cumtrapz(t,(exp(t).*x));
were x is a bounded vector and t is corresponding time stamp vector
y Output is finite but intermediate values of the exponent exceed matlab capability for large numbers

채택된 답변

John D'Errico
John D'Errico 2019년 6월 19일
편집: John D'Errico 2019년 6월 19일
Calc 101.
An integral is a linear operator. You can move any multiplicative constant inside or outside of the integral.
Suppose you write t as:
tmax + (t - tmax)
where
tmax = max(t)
Does this help you? It should. Try substituting into your expression. What will happen? Look carefully.
y = exp(-(tmax + (t-tmax))).*cumtrapz(t,(exp(tmax + (t - tmax)).*x));
remember. tmax is a constant. What is
exp(-tmax)*exp(tmax)
Hint: exp(0) = 1
That lets you reduce the problem a bit:
y = exp(-(t-tmax)).*cumtrapz(t,(exp(t - tmax).*x));
Since t-tmax is now never larger than 0, exp(t-tmax) is never a large number.
  댓글 수: 3
Steven Lord
Steven Lord 2019년 6월 19일
What are the bounds of your vector t? What are the minimum and maximum values it contains?
Albert Hall
Albert Hall 2019년 6월 24일
Looks this was a short term fix. From this general principle in the answer, I used the constant tmax/2 to help at the start and at the end. I have a fitting constant tau that I use with the expression that makes the problem tractable.
y = exp(-(t-tmax/2)/tau).*cumtrapz(t,(exp(t - tmax/2)/tau.*x));
For larger problems I may need another method. If youall have any additional ideas to reduce the expression let me know.
Thanks

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

추가 답변 (1개)

Albert Hall
Albert Hall 2019년 6월 19일
t = 0 to 79391
  댓글 수: 2
Albert Hall
Albert Hall 2019년 6월 19일
I can foresee that I might need to calculate higher numbers in future.
Steven Lord
Steven Lord 2019년 6월 24일
Then you would need to use an arbitrary precision system like Symbolic Math Toolbox. Let's see what exp(79391) is:
>> vpa(exp(sym(79391)), 6)
ans =
1.18362e34479
To put that into perspective, that's a really big number. You're in the section about one googol to one googolplex in this Wikipedia article, which includes numbers like the number of legal positions in the game of Go (about 2e170), approximate number of Planck volumes in the observable universe (around 1e186), or number of distinguishable permutations in the 33-by-33-by-33 Rubix Cube (around 2e4099.) Your number is much larger than any of those.
By comparison, an upper bound on the number of legal chess positions is about 4.52e46, and the number of fundamental particles in the observable universe is estimated at 1e80 to 1e85.
What exactly are you trying to compute with this calculation? There may be a way to avoid needing to compute using such huge (and tiny, since you also use exp(-t) in your code) numbers. The probability that a monkey will type Shakespeare's Hamlet on its first try is much smaller than exp(-t), but it might be the probability of that monkey typing a sonnet or two on its first try.

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

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by