Skip to content

Files

Latest commit

62546f8 · Jun 2, 2020

History

History
This branch is 16 commits ahead of, 19 commits behind csc-training/hpc-python:master.

linear-algebra

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jan 24, 2018
Jan 25, 2018
Jun 2, 2020

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().