Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 337 Bytes

README.md

File metadata and controls

7 lines (6 loc) · 337 Bytes

Linear algebra

  1. Construct two symmetric 2x2 matrices A and B. Hint: a symmetric matrix can be constructed easily from a square matrix as Asym = A + A^T
  2. Calculate the matrix product C = A * B using numpy.dot().
  3. Calculate the eigenvalues of matrix C with numpy.linalg.eigvals().