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?

3 个评论

Can you share a small sample of your table in a mat file?
values in data_sum_daily.Var1 should be considered.

请先登录,再进行评论。

 采纳的回答

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 个)

类别

帮助中心File Exchange 中查找有关 Data Type Conversion 的更多信息

产品

版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by