determination between Inf and -Inf

Hello,
I have a matrix that contains both inf and -inf points. I'm currently using isinf() to find the locations of these points however I have no way of knowing whether it's -inf or +inf.
The reason for this is because I later replace each inf with a predetermine value (5000) and I would like to be able to replace -inf with -5000 (but so far I haven't been able to detect them. Sample code below:
data(isinf(data)) = max(model.ub); %the max here will return 5000;
Thanks Al

 Risposta accettata

Azzi Abdelmalek
Azzi Abdelmalek il 22 Lug 2016
Modificato: Azzi Abdelmalek il 22 Lug 2016
a=[1 2 inf 3 -inf -4]
idx=isinf(a)
sign(a(idx))

Più risposte (0)

Categorie

Community Treasure Hunt

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

Start Hunting!

Translated by