Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

help:eigenvectors by matlab

Status
Not open for further replies.

malikanwer

Junior Member level 3
Joined
Oct 14, 2005
Messages
26
Helped
2
Reputation
4
Reaction score
0
Trophy points
1,281
Activity points
1,484
hi, can some one plz help me how to find eigen vectors by using matlab
 

The symbolic eigenvalues of a square matrix A or the symbolic eigenvalues and eigenvectors of A are computed, respectively, using the commands
Code:
E = eig(A)
[V,E] = eig(A)


The variable-precision counterparts are
Code:
E = eig(vpa(A))
[V,E] = eig(vpa(A))


The eigenvalues of A are the zeros of the characteristic polynomial of A, ie. det(A-x*I).
 

    malikanwer

    Points: 2
    Helpful Answer Positive Rating
Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top