From 5927e4d86d359016a0651705f0be2e6085c0f462 Mon Sep 17 00:00:00 2001 From: leo Date: Mon, 27 Feb 2023 04:10:44 +0100 Subject: [PATCH] p2: add alternative way to get matrix product --- p2/stats/stats.go | 1 + 1 file changed, 1 insertion(+) diff --git a/p2/stats/stats.go b/p2/stats/stats.go index 7813547..f53a283 100644 --- a/p2/stats/stats.go +++ b/p2/stats/stats.go @@ -123,6 +123,7 @@ func ImpulseFunction(ruu []float64, ruy []float64) ([]float64, error) { // g.Mul(invRuuMatrix, ruyVect) g.Mul(ruyVect, invRuuMatrix) + // g.Product(ruyVect, invRuuMatrix) // calculate h - the impulse function. h, err := estimateImpulseFunc(g, lruu)