how can i make histogram without missing value(with nan,isnan)
16 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
jiyun Kim
el 11 de Mayo de 2019
Comentada: jiyun Kim
el 13 de Mayo de 2019
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 comentarios
Respuesta aceptada
gonzalo Mier
el 11 de Mayo de 2019
You can remove nan before computing the histogram
histogram(ws(~isnan(ws(:))))
Más respuestas (0)
Ver también
Categorías
Más información sobre Histograms 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!