フィルターのクリア

Find function and storing in cell

1 回表示 (過去 30 日間)
Morten Jørgensen
Morten Jørgensen 2019 年 3 月 21 日
編集済み: Walter Roberson 2019 年 3 月 25 日
Hi
I'm trying to write a program that stores the values 0 < X < 1
I have an array X wich are 15000x14 and I want to store the row numbers in a cell every time the values are between 0 and 1
in some cases there are multiple values that 0 < X < 1
How should I write this?
[x,y] =find(0 < X < 1);
when I do this it still gives me numbers that are negative
Thanks Morten
  1 件のコメント
madhan ravi
madhan ravi 2019 年 3 月 21 日
[x,y] =find(X>0 & X<1);

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

採用された回答

Walter Roberson
Walter Roberson 2019 年 3 月 21 日
In MATLAB, except for some symbolic contexts, the expression 0 < X < 1 is parsed as ((0 < X) < 1) . The 0 < X part is done first and gives a result that is either 0 (false) or 1 (true). Then that 0 or 1 is compared < 1 and that is going to give 0 where the result of the first comparison was true (because 1 < 1 is false) and 1 where the result of the first comparison was true (because 0 < 1 is true.)
You need to use 0 < X & X < 1
  2 件のコメント
Morten Jørgensen
Morten Jørgensen 2019 年 3 月 21 日
Thanks.
And how can I index the row numbers in a cell?
Walter Roberson
Walter Roberson 2019 年 3 月 25 日
編集済み: Walter Roberson 2019 年 3 月 25 日
mask = any(0 < X & X < 1, 2);
rows_with_match = find(mask);

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeString Parsing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by