make our own signum

2 ビュー (過去 30 日間)
Soveatin Kuntur
Soveatin Kuntur 2021 年 5 月 11 日
回答済み: Walter Roberson 2021 年 5 月 11 日
Dear all,
is there any simple way to transform this javascript logic:
return value < 0 ? -1 : 1
into matlab

採用された回答

Walter Roberson
Walter Roberson 2021 年 5 月 11 日
Under the interpretation that nan values are not less than 0 (they are not greater than 0 either)
output = (value < 0) .* -2 + 1;
output(isnan(value)) = 1;
or
output = (value < 0) .* -1 + (value >= 0) .* 1
output(isnan(value)) = 1;
or
output = (value >= 0) - (value < 0);
output(isnan(value)) = 1;
or
output = sign(value) + (value == 0);
output(isnan(value)) = 1;
If you are certain that the values will never be NaN then you can simplify the code.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeTime Series Events についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by