|
Re: Plot continuous line when have missing data points [message #83423 is a reply to message #83358] |
Fri, 01 March 2013 07:56  |
morganlsilverman
Messages: 46 Registered: February 2013
|
Member |
|
|
Phillip,
Thank you very much. Took some playing around to get it to work but this is exactly what I needed. I've never used the finite command before or PLOTS much.
Sincerely,
Morgan
On Thursday, February 28, 2013 4:40:39 PM UTC-5, Phillip Bitzer wrote:
> You can always try something along the lines of
>
>
>
> IDL> ind = WHERE(FINITE(alt), count)
>
> IDL> PLOTS, temp[ind], alt[ind], PSMY=-2
>
>
>
> This assumes the NaN's occur in the same place in each array, of course.
>
>
>
> Cheers,
>
> Phillip
|
|
|