Find and replace value
3 次查看(过去 30 天)
显示 更早的评论
I am working with a time table and wanna replace values==0 or less than i.e:800 with the value of the day before. how can i do it?
采纳的回答
Ameer Hamza
2020-4-22
Try this
load('data_sum_rad.mat');
data_sum_daily.Var1(data_sum_daily.Var1==0) = nan;
data_sum_daily.Var1 = fillmissing(data_sum_daily.Var1, 'previous');
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Migrate GUIDE Apps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!