Vector/matrix algebra
- From: desktop <asdfsf@xxxxxxx>
- Date: Sun, 30 Dec 2007 13:53:17 +0100
I have made the following vector and matrix:
>> v =[2,1]'
v =
2
1
>> A = [1,2;-1,3;4,4;5,2]
A =
1 2
-1 3
4 4
5 2
In this case A*v is the same as v'*A' (where ' means transposed):
>> A*v
ans =
4
1
12
12
>> v'*A'
ans =
4 1 12 12
>>
If A*v is defined does it always give the same result as v'*A'?
.
- Follow-Ups:
- Re: Vector/matrix algebra
- From: David L. Wilson
- Re: Vector/matrix algebra
- Prev by Date: Re: Interesting question
- Next by Date: finding the transformation which rotates a vector in Rn
- Previous by thread: Re: Who is for whom?
- Next by thread: Re: Vector/matrix algebra
- Index(es):