Using 1s and 0s to change data to NaN

1 回表示 (過去 30 日間)
Robert
Robert 2015 年 7 月 14 日
コメント済み: Robert 2015 年 7 月 14 日
Suppose I have 2 arrays
A = [1,2,3,4,5,6,7,8]
B = [0,1,1,0,1,0,0,1]
I only want to keep the numbers that match 1s in a second array and turn 0s to NaN, So the output should be
C = [Nan,2,3,NaN,5,NaN,NaN,8]
Is there a way to do this?
The actual situation I want to apply it to has much more data but I assume the concept will be transferrable

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2015 年 7 月 14 日
A = [1,2,3,4,5,6,7,8]
B = [0,1,1,0,1,0,0,1]
C=A;
C(~B)=nan
  1 件のコメント
Robert
Robert 2015 年 7 月 14 日
Perfect, Thank you :)

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

その他の回答 (0 件)

カテゴリ

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

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by