how can i make histogram without missing value(with nan,isnan)
조회 수: 12 (최근 30일)
이전 댓글 표시
please help me.
i want calculate wind direction and speen without Missing values(they are appeared -999) and then display it's frequency with histogram.
so i used nan,isnan but it didn't work it apear like this picture(sky blue color). how can i do to make the latter picture(blue one)?
) ?
댓글 수: 0
채택된 답변
gonzalo Mier
2019년 5월 11일
You can remove nan before computing the histogram
histogram(ws(~isnan(ws(:))))
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Histograms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!