|
Getting Started with IDL: Signal Processing with IDL |
|
Now look at all of the results at the same time. The plotting window can be split into six sections, making each section display a different plot. The system variable !P.MULTI tells IDL how many plots to put on a single page.
Enter the following lines to display a plotting window which shows all of the plots simultaneously.
!P.MULTI=[0,2,3]
PLOT,ORIGINAL,TITLE='Original (Ideal) Data'
PLOT,NOISY,TITLE='Noisy Data'
PLOT,SHIFT(filter,100),TITLE='Filter Function'
PLOT,LOWPASS,TITLE='Lowpass Filtered'
PLOT,HIGHPASS,TITLE='Highpass Filtered'
PLOT, smoothed, TITLE = 'Smoothed with Boxcar average'
![]() |
!P.MULTI = 0
IDL Online Help (March 06, 2007)