This commit is contained in:
2020-02-13 15:16:49 -07:00
parent 51e97c74a4
commit 7272f50290
1203 changed files with 341812 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import numpy as np
def HighSchool(n, P, Q):
PQ = np.zeros((2*n, 2*n))
for i in range(0, n):
for j in range(0, n):
PQ[i, j] += P[i]*Q[j]
return PQ