Skip to content

Commit 62546f8

Browse files
committed
2.19
1 parent 429eb68 commit 62546f8

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import numpy as np
2+
3+
A = np.random.random(size=(2, 2))
4+
Asym = A + A.T
5+
B = np.random.random(size=(2, 2))
6+
B = B + B.T
7+
8+
C = np.dot(A, B)
9+
10+
D = np.linalign.eigvals(C)

0 commit comments

Comments
 (0)