Question: convert/vector: Why is in this case the default orientation not column

The following Array does not convert to a column vector as described in ?convert,Vector

A := Array([1, 2, 3]);
convert(A, Vector);# the default orientation should be column;
whattype(%);
convert(convert(A, list), Vector);# here the default orientation is column
                         A := [1, 2, 3]

                           [1, 2, 3]

                          Vector[row]

                              [1]
                              [ ]
                              [2]
                              [ ]
                              [3]

Is there something special with the data structure Array that convert(A, Vector[column]) has to be used to convert to a column vector?

Please Wait...