We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4adf771 commit d451fd1Copy full SHA for d451fd1
numpy/linear-algebra/README.md
@@ -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