Skip to content

IDL print two arrays side by side

Solution from: 
https://stackoverflow.com/questions/25167780/output-2-array-values-to-a-text-file-using-idl

IDL> x = findgen(10)
IDL> y = findgen(10) * 2
IDL> print, transpose([[x], [y]]), format='(2F)'

--Joel
Published inIDL hints

Be First to Comment

Leave a Reply

Your email address will not be published. Required fields are marked *