Re: How to mutiply a 3x1 and 1x3 vector
- To: mathgroup at smc.vnet.net
- Subject: [mg3098] Re: How to mutiply a 3x1 and 1x3 vector
- From: fjl0014 at ucs.usl.edu (Lombardo Fernando J)
- Date: Wed, 31 Jan 1996 03:05:07 -0500
- Organization: Univ. of Southwestern La., Lafayette
- Sender: owner-wri-mathgroup at wri.com
In article <4ekes6$6gj at dragonfly.wri.com>,
Stephen Nichols <snichols at onramp.net> wrote:
>
>Hi,
>
>I have another question that I thought would be simple to to in Mathematica.
>I have two vectors A={1,2,3} and B={3,4,5}. How do I multiple them together
>to get a 3x3 matrix. A . B gives me a scalar result. Mma seems to always
>treat the first one as a row vector and the second as a column vector. I
>need it to do the opposite. Treat the first as a column vector and the second
>as a row vector. Any ideas?
>
>thanks,
>
I had a similar problem. Try instead to define your vectors like:
A={{1,2,3}} and B={{3,4,5,}}. and then do Transpose[A].B
I think you will get a 3x3 matrix.
-Fernando fjl at usl.edu
==== [MESSAGE SEPARATOR] ====