How to plot taking into account the NaN positions?
    조회 수: 9 (최근 30일)
  
       이전 댓글 표시
    
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
답변 (1개)
  KSSV
      
      
 2016년 10월 13일
        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
  KSSV
      
      
 2016년 10월 13일
				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.
참고 항목
카테고리
				Help Center 및 File Exchange에서 NaNs에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

