Skip to content

Commit d451fd1

Browse files
committed
Add exercise assignment for Linear algebra
1 parent 4adf771 commit d451fd1

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Diff for: numpy/linear-algebra/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## Linear algebra
2+
3+
1. Construct two symmetric 2x2 matrices **A** and **B**.
4+
*Hint: a symmetric matrix can be constructed easily as
5+
**Asym** = **A** + **A**^T*
6+
2. Calculate the matrix product **C** = **A** * **B** using `numpy.dot()`.
7+
3. Calculate the eigenvalues of matrix **C** with `numpy.linalg.eigvals()`.

0 commit comments

Comments
 (0)