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?
댓글 수: 3
채택된 답변
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!