Inf and NaN problem

13 visualizaciones (últimos 30 días)
Hajar
Hajar el 14 de En. de 2015
Comentada: Star Strider el 14 de En. de 2015
I have to do some computations with very big numbers values, so my matlab code returns "Inf" and "NaN.. I want to know if there is a way to avoid this problem? here is the part of my code that returns Inf and NaN
UtiliteProba(b,l)=exp((UtiliteB(b,l)+UtiliteC(b,l))/T);
proba(b,l)=UtiliteProba(b,l)/constante(1,b);
Actually the "UtiliteProba"= Inf and "proba"=NaN , the "constante" is equal to Inf too..
thank you so much for your help

Respuestas (2)

Iain
Iain el 14 de En. de 2015
Logarithms are your friends. Here's what I mean maths:
log(UtiliteProba) = (UtiliteB(b,l)+UtiliteC(b,l))/T (values in the range of a few hundred correspond to the maximum values matlab can handle with doubles)
proba = e^(log(UtiliteProba) - log(constante(1,b))
log(proba) = (log(UtiliteProba) - log(constante(1,b))
  1 comentario
Hajar
Hajar el 14 de En. de 2015
I forgot to mention that
constante(1,b)=sum(UtiliteProba(b,:))
then
log(proba)=log(utiliteProba)-log(constante)
=log(utiliteProba)-log(sum(utiliteProba))
for log(utiliteProba) it's okay since I can calculate it by using (UtiliteB(b,l)+UtiliteC(b,l))/T , but log(constante) would be log(inf) :s :s

Iniciar sesión para comentar.


Star Strider
Star Strider el 14 de En. de 2015
The only way I can imagine to avoid the Inf and NaN values (assuming none of the arguments ‘UtiliteB’ and ‘UtiliteC’ are either Inf or NaN) is to not take the exponential and keep them as logarithms until you need to actually evaluate them as exponentials:
UtiliteProba(b,l) = ((UtiliteB(b,l)+UtiliteC(b,l))/T);
proba(b,l) = UtiliteProba(b,l) - log(constante(1,b));
  2 comentarios
Hajar
Hajar el 14 de En. de 2015
actually constante(1,b)=sum(UtiliteProba(b,l)) :s
Star Strider
Star Strider el 14 de En. de 2015
‘log(constante) would be log(inf)’
If ‘constante = Inf’, then none of your calculations using it will produce any useful results.
You need to review your calculation of ‘constante’ and see what the problem is with it.

Iniciar sesión para comentar.

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by