Re: eig(A,'nobalnace') normalized eigenvectors. Help says otherwise
- From: marky <no@xxxxxxxxx>
- Date: Tue, 15 May 2007 11:25:40 +0300
Nasser Abbasi wrote:
Help on eig says:
"Note For eig(A), the eigenvectors are scaled so that the norm of each is 1.0. For eig(A,B), eig(A,'nobalance'), and eig(A,B,flag), the eigenvectors are not normalized."
But I am getting them out to be normalized when using 'nobalance'. Am I overlooking something here?
Maybe it's just a coincidence with your A:
>> A=rand(2);
>> [v,lam]=eig(A);v
v =
0.8379 -0.3634
0.5458 0.9316
>> [v,lam]=eig(A,'nobalance');v
v =
1.0000 -0.3901
0.6513 1.0000
>>
I really do not want Matlab to normalize my eigenvectors for me, I'll do it myself, thank you very much !
I don't see what the problem is here. Denormalizing is easy to do by hand.
.
- Follow-Ups:
- Re: eig(A,'nobalnace') normalized eigenvectors. Help says otherwise
- From: Nasser Abbasi
- Re: eig(A,'nobalnace') normalized eigenvectors. Help says otherwise
- References:
- eig(A,'nobalnace') normalized eigenvectors. Help says otherwise
- From: Nasser Abbasi
- eig(A,'nobalnace') normalized eigenvectors. Help says otherwise
- Prev by Date: Re: Nested functions are evil
- Next by Date: Re: Combining 400+ Images into one
- Previous by thread: eig(A,'nobalnace') normalized eigenvectors. Help says otherwise
- Next by thread: Re: eig(A,'nobalnace') normalized eigenvectors. Help says otherwise
- Index(es):
Relevant Pages
|