How do i find eigen vector corresponding to imaginery eigen value
33 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Lokesh
el 5 de Nov. de 2024 a las 4:32
Editada: Walter Roberson
el 5 de Nov. de 2024 a las 5:07
[V, D] = eig(A)
The eigenvectors in V correspond to eigenvalues that can be real or complex. However, I am interested in finding the eigenvectors that correspond specifically to purely imaginary eigenvalues. Is there a way to achieve this?T
0 comentarios
Respuesta aceptada
Gayatri
el 5 de Nov. de 2024 a las 4:41
Hi Lokesh,
You can use 'imag' function to find the eigenvectors that correspond specifically to purely imaginary eigenvalues.
A = rand(5);
[V,D] = eig(A,'vector');
hasComplexPart = imag(D)~=0;
D = D(hasComplexPart)
V = V(:,hasComplexPart)
Please refer the below documentation for 'imag' function: https://www.mathworks.com/help/symbolic/sym.imag.html
Más respuestas (0)
Ver también
Categorías
Más información sobre Linear Algebra en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!