Filling gaps in a vector using a secondary data set
1 回表示 (過去 30 日間)
古いコメントを表示
Hello,
I have two half-hourly precipitation datasets for 2021 (rain gauge 1 and rain gauge 2).
Rain gauge 1 has NaN values at the start and end of the year. For these two time periods I would like to replace the NaN values with data from the rain gauge 2 dataset.
Is there a good way to do this? Do I need to pull out the values I would like to use from each vector and then join them together into a new vector? This seems clunky?
Thank you!
0 件のコメント
採用された回答
Les Beckham
2022 年 8 月 3 日
編集済み: Les Beckham
2022 年 8 月 3 日
rain1 = [nan nan 1:10 nan nan] % example data
rain2 = [20:34]
idx = isnan(rain1); % find where rain1 has nans
rain1(idx) = rain2(idx) % replace them with data from rain2
2 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Other Formats についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!