presentations/highlight-js/test/markup/python/matrix-multiplication.txt

8 lines
145 B
Text
Raw Permalink Normal View History

2018-12-07 08:48:05 -06:00
@meta
class C:
@decorator
def f(self, H, V, beta, r):
S = (H @ beta - r).T @ inv(H @ V @ H.T) @ (H @ beta - r)
return S