* Sound Example Read raw binary data from a simulated sound file using the IB1. (integer binary) informat Print and plot this data; options linesize=70 nodate pageno=1; data sound; infile 'c:/datasets/sound.bin'; input x IB1. @@; t = _n_; proc print; var t x; proc gplot; plot x * t; run; quit;