Compare two matrix in matlab
古いコメントを表示
I have two matrix data1 and data2. I want to select all rows in data1 that close or equals to data2. I know that loop each element can work but it will take a long time. Is there any easy method I can use?
data1 is attached and data 2 is the following function.
x1 = (0:1:414194)';
data2 = 6*x1;
Thank a lot,
MCC
1 件のコメント
SALAH ALRABEEI
2021 年 6 月 15 日
what is the matrices size of data1 and data2!
採用された回答
その他の回答 (1 件)
Sulaymon Eshkabilov
2021 年 6 月 15 日
Easy and fast efficient solution is Logical Indexing, e.g.:
IND = Data1==Data2
D1 = Data1(IND);
D2 = Data2(IND);
You can also employ round() fcn to reduce the small differences in values of the two data sets.
Or even better to compute the min. differences and get those indices, e.g.:
[minVal,ClosestIND] = min(abs(Data1-Data2))
D1 = Data1(ClosestIND);
D2 = Data2(ClosestIND);
3 件のコメント
MCC
2021 年 6 月 15 日
Sulaymon Eshkabilov
2021 年 6 月 15 日
In that case, probably a loop would be an opt.
カテゴリ
ヘルプ センター および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!