RosettaCodeData/Task/Array-concatenation/IDL/array-concatenation-4.idl

14 lines
352 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
> b = transpose(b)
> help,b
B INT = Array[1, 3]
> print,b
4
5
6
> print,[a,b]
Unable to concatenate variables because the dimensions do not agree: B.
Execution halted at: $MAIN$
> print,[[a],[b]]
Unable to concatenate variables because the dimensions do not agree: B.
Execution halted at: $MAIN$