Run-time efficiency: Cleaning wave date by removing values above calculated threshold
조회 수: 1(최근 30일)
표시 이전 댓글
I would like to reduce the run-time of the attached code, all the files needed to make the code run are in the zip attached. This code currently takes 7.6 minutes to run.
load('SortedHS2009.mat')
tic
for i = 1:length(IndexOfStationsAraeaW)
stationid=genvarname(num2str(IndexOfStationsAraeaW(i)));
for imonth=1:12 %Jan to Dec
index=find(month(Date.(stationid))==imonth); %Find index for current month
[ToClean]=CleanDataV3(HS.(stationid),index); %Find index of values to set to NaN
HS.(stationid)(ToClean)=NaN; %Set them to NaN
end
end
toc
댓글 수: 0
답변(0개)
참고 항목
범주
Find more on Data Sets in CAGE in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!