From: DSPtree on
Could some please give the code to convert a matrix into a column vector.. as in 'vec' operator functions.

eg: A=[1 2; 3 4]

vec(A)= [1 2 3 4]'


Thanks & Regards
From: DSPtree on
and also please help me out to convert an array to a vector.
From: Bruno Luong on
DSPtree <paulscot45(a)yahoo.com> wrote in message <1147924387.366528.1276850904941.JavaMail.root(a)gallium.mathforum.org>...
> Could some please give the code to convert a matrix into a column vector.. as in 'vec' operator functions.
>
> eg: A=[1 2; 3 4]
>
> vec(A)= [1 2 3 4]'

A(:)

Bruno