matrix-multiplication.txt 145 B

1234567
  1. @meta
  2. class C:
  3. @decorator
  4. def f(self, H, V, beta, r):
  5. S = (H @ beta - r).T @ inv(H @ V @ H.T) @ (H @ beta - r)
  6. return S