How do I using logical values to write 'NAN' to non-existing data?
2 ビュー (過去 30 日間)
古いコメントを表示
I have a data set with non equal lengths
A = B =
H m lat H m lat
0 2 -90 0 1 -90
0 2 -89 0 1 -89
0 2 -88 0 1 -87
0 2 -87 0 1 -86
0 2 -86
I want to query using the lat of A to find missing lat in B and write 'NAN' in that row
so that the sizes become the same like this; I want to use this idea for a large data set
B=
0 2 -90
0 2 -89
NAN NAN NAN
0 2 -87
0 2 -86
0 件のコメント
採用された回答
Rik
2022 年 11 月 8 日
You can use ismember:
A=[ones(5,2).*[0 2] (-90:-86).'];
B=[ones(4,2).*[0 2] [-90;-89;-87;-86]];
new_B=nan(size(A));
[~,rows]=ismember(B(:,3),A(:,3));
new_B(rows,:)=B;
new_B
4 件のコメント
Rik
2022 年 11 月 8 日
You have posted code, but you didn't explain how the output is different from what you want.
Note that this code will overwrite any values that occur multiple times in later elements of A.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!