Q:

Write a NumPy program to compute the eigenvalues and right eigenvectors of a given square array

0

Write a NumPy program to compute the eigenvalues and right eigenvectors of a given square array.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

import numpy as np
m = np.mat("3 -2;1 0")
print("Original matrix:")
print("a\n", m)
w, v = np.linalg.eig(m) 
print( "Eigenvalues of the said matrix",w)
print( "Eigenvectors of the said matrix",v)

Sample Output:

Original matrix:
a
 [[ 3 -2]
 [ 1  0]]
Eigenvalues of the said matrix [ 2.  1.]
Eigenvectors of the said matrix [[ 0.89442719  0.70710678]
 [ 0.4472136   0.70710678]]

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now