Find and replace value
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hamed Hedayatnia
el 22 de Abr. de 2020
Respondida: Ameer Hamza
el 22 de Abr. de 2020
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 comentarios
Respuesta aceptada
Ameer Hamza
el 22 de Abr. de 2020
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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!