Find doesn't seem to work with Matrix larger than 127x127

1 回表示 (過去 30 日間)
Bartosz
Bartosz 2023 年 1 月 28 日
コメント済み: Walter Roberson 2023 年 1 月 28 日
[i,j]=find(A);
A is matrix of size n where n varies in size from 100 to 2000 (each time calculation is completed it's incremented by 50). For n = 100 all is fine, but once I reach 150 i and j only record values to 127.
If it is relevant A is matrix of adjacency for complete binary tree of n nodes
  5 件のコメント
Bruno Luong
Bruno Luong 2023 年 1 月 28 日
編集済み: Bruno Luong 2023 年 1 月 28 日
FIND works just fine. Just your A matrix filling does something that you are not expected.
max(i) = 150, max(j) = 127
Bartosz
Bartosz 2023 年 1 月 28 日
Thanks, problem has been solved. Sorry for your wasted time on such a simple mistake of mine

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

採用された回答

Walter Roberson
Walter Roberson 2023 年 1 月 28 日
I am certain that find works. I speculate that you are putting the values together in an array with values of datatype int8. When you put together values of mixed data type, the output result is typically the most restricted data type of all of the inputs.
  3 件のコメント
Bartosz
Bartosz 2023 年 1 月 28 日
Huge thanks! I didn't see this one. If I ever met you, I'd buy you a beer. Once again thanks a lot
Walter Roberson
Walter Roberson 2023 年 1 月 28 日
I would suggest that your code would probably be clearer if you were to build A as being n by 2 by something -- you could reshape it back afterwards.

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

その他の回答 (1 件)

Jan
Jan 2023 年 1 月 28 日
This observation does not match the facts:
X = randi([0, 1], 150, 150);
[i,j] = find(X);
max(i)
ans = 150
max(j)
ans = 150
If you observe a very strange behavior, which implies, that hundrets of thousands Matlab users did not notice a serious problem in standard function for many years, you can be sure, that your observation is wrong.
If no indices > 127 are found in your case, there are no non-zeros with such indices. The limit of 127 sounds like the maximum value of int8 values.
Please post some code, which reproduces the problem. I'm sure, that the proble ist not the find() command, but hidden in your code.

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

タグ

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by