columnswap SciMax Toolbox combination

SciMax Toolbox >> columnvector

columnvector

Maxima Function

Calling Sequence

columnvector (L)
covect(L)

Description

Returns a matrix of one column and length (L) rows, containing the elements of the list L.

covect is a synonym for columnvector.

load ("eigen") loads this function.

This is useful if you want to use parts of the outputs of the functions in this package in matrix calculations.

Example:

(%i1) load ("eigen")$
Warning - you are redefining the Macsyma function 
Warning - you are redefining the Macsyma function 
(%i2) columnvector ([aa, bb, cc, dd]);
                             [ aa ]
                             [    ]
                             [ bb ]
(%o2)                        [    ]
                             [ cc ]
                             [    ]
                             [ dd ]
columnswap SciMax Toolbox combination