append!(v,w) – it modifies and returns v.
On Wed, Sep 10, 2014 at 12:25 AM, Diego Tapias <[email protected]> wrote: > Consider the arrays given by > > v = [1.,2.,3.] > > w = [2.,4.,6.] > > As you know both are arrays of dimension 1. I want to form the matrix with > its columns given by v and w. How can I do that (I tried with “cat” but it > didn’t worh)? How can it be generalized for n arrrays. > > Thanks in advance > >
