; March 2015 | Michael Ian Lapsley

IDL Notebook: arrays

IDL Notebook: Arrays As simple as you think it might be, I always need to look up the correct function necessary to create the type of array that I need in IDL. Here is a good reference: http://www.cis.rit.edu/class/simg211/Vectors_and_Arrays.html BINDGEN Return a byte array with each element set to its subscript. IDL> print, bindgen(10)        0 1 ...

IDL Notebook: Plot

IDL Notebook: Examples and references from lessons learned while using IDL Plot formatting examples: ; Plot p = plot($           x,y, $           name = 'NameStr', $           color = 'blue', $           symbol = 'o',$          ...