How to plot taking into account the NaN positions?
2 views (last 30 days)
Show older comments
I'm comparing data with the same x length in several subplots. However, sometimes my data starts/end with NaN and when ploted the x changes dimensions ignoring the first/last NaN values. I don't want to substitute the NaN values because they are part of my data. I also tried to make it plot "all", but keeps ignoring the first/last NaN. How can I plot my data maintaining the complete length of x without ignoring the first/last NaN?
0 Comments
Answers (1)
KSSV
on 13 Oct 2016
NaN cannot be plotted. If NaN appears in between, the data breaks there and then plots. If you want to keep the data same and want to plot the NaN places also, you have to fill these NaN values using some gap filling techniques Eg. interpolation would be easy and straight forward.
2 Comments
KSSV
on 13 Oct 2016
Though NaN is there, The dimensions of (x,y) are maintained. Else it would have thrown error. For calculation parts, you can discard the respective NaN parts, whcih reduces the dimension. If you insist on having the dimensions same, do interpolation to fill the NaNs.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!