Undefined Variable; Q7day, help! Thank you
조회 수: 10 (최근 30일)
이전 댓글 표시
for i=st1_dates_vector(1) : st1_dates_vector(end);
st1_Q_year=st1_Q(st1_years==i);
for k=1:365-6;
Q7day=st1_Q_year(k:k+6)
st1_Q_7day_ave(k,ctr)=nanmean(Q7day)
end
end
min7_1=min(Q7day);
댓글 수: 0
답변 (1개)
James Tursa
2017년 3월 14일
편집: James Tursa
2017년 3월 14일
If you never get inside the for loop, Q7day will not get defined and that last line will error. Run your code in the debugger and step through your code line by line to see what path it takes and why it is skipping the line that defines Q7day.
To run your code in the debugger, first bring up the file in the editor. Then click on the dash next to a line number at the start of the code. Then push the green triangle run button. Then push the "step_by_line" button to execute each line (the button with the looping arrow on the left).
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Entering Commands에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!