matlab octave 行列をベクトルに

octave:14> a=[1,2;3,4]
a =

   1   2
   3   4

octave:15> a(:)
ans =

   1
   3
   2
   4