determination between Inf and -Inf

11 views (last 30 days)
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

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 22 Jul 2016
Edited: Azzi Abdelmalek on 22 Jul 2016
a=[1 2 inf 3 -inf -4]
idx=isinf(a)
sign(a(idx))
  1 Comment
Azzi Abdelmalek
Azzi Abdelmalek on 22 Jul 2016
Al-Hussein Abutaleb commented
Brilliant!
Thank you! A

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!