Compare two vector arrays and if they match set vector array 2 = nan?
2 ビュー (過去 30 日間)
古いコメントを表示
So i have two arrays the same size:
time = [0,0,0,0,2,3,4,5,5,6,7,8]';
solution = [1,2,0,0,1,1,2,2,2,0,0,0];
What would be the best way to compare the two and if both are the same make solution 0 = nan;
So the final outcome i would like is solution = [1,2,nan,nan,1,1,2,2,2,0,0,0];
would i use a function such as:
if strfind(time,solution)==0
Do something?
Thanks in adavnce!
0 件のコメント
採用された回答
Walter Roberson
2022 年 2 月 11 日
time = [0,0,0,0,2,3,4,5,5,6,7,8]
solution = [1,2,0,0,1,1,2,2,2,0,0,0]
outcome = solution;
outcome(solution == 0 & time == 0) = nan
It is not clear what you want to have happen in positions where the values are equal, but the values are not 0.
3 件のコメント
Walter Roberson
2022 年 2 月 11 日
solution(time ==0 & solution==0) = nan;
if ~any(isnan(solution)); return; end
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!