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

 採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2016 年 7 月 22 日
編集済み: Azzi Abdelmalek 2016 年 7 月 22 日

0 投票

a=[1 2 inf 3 -inf -4]
idx=isinf(a)
sign(a(idx))

1 件のコメント

Azzi Abdelmalek
Azzi Abdelmalek 2016 年 7 月 22 日
Al-Hussein Abutaleb commented
Brilliant!
Thank you! A

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeLog Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by