Re: Lists: Row Vectors vs. Column Vectors. (feels like such a silly
- To: mathgroup at smc.vnet.net
- Subject: [mg110201] Re: Lists: Row Vectors vs. Column Vectors. (feels like such a silly
- From: Jagra <jagra24891 at mypacks.net>
- Date: Tue, 8 Jun 2010 07:06:45 -0400 (EDT)
- References: <huinf1$o40$1@smc.vnet.net>
{a,b,c,d} // MatrixForm {{a,b,c,d}} // MatrixForm The following doesn't work, because one can't transpose a one directional object. Transpose[{a,b,c,d}] // MatrixForm The following as a matrix will transpose: Transpose[{{a,b,c,d}}] // MatrixForm Just some clues that help it all begin to make sense.