フィルターのクリア

How to combine arrays using NaN?

10 ビュー (過去 30 日間)
Sean O'Donnell
Sean O'Donnell 2018 年 12 月 12 日
コメント済み: Sean O'Donnell 2018 年 12 月 13 日
I have two arrays, one longer than the other. The long array is sequential from 1 to some value, with NaN filling some elements instead of the value of that element. The length of the short array is the length of the long array without the NaN elements. How do I combine the arrays so that the new array will be the same length as the long array, and will have NaN in the same elements as in the long array, and the data from the short array in the rest of the elements?
Ex:
A = [1 2 3 NaN 5 6 NaN 8 NaN 10];
B = [96 12 83 71 34 64 21];
FinalArray = [96 12 83 NaN 71 34 NaN 64 NaN 21];
Thanks

採用された回答

Daniele Mascali
Daniele Mascali 2018 年 12 月 12 日
One possible solution:
FinalArray = nan(size(A));
FinalArray(find(not(isnan(A)))) = B
  2 件のコメント
Walter Roberson
Walter Roberson 2018 年 12 月 12 日
More compactly:
FinalArray = nan(size(A));
FinalArray(~isnan(A)) = B;
Sean O'Donnell
Sean O'Donnell 2018 年 12 月 13 日
Thank you. That worked.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

製品


リリース

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by