p2: add alternative way to get matrix product

This commit is contained in:
leo 2023-02-27 04:10:44 +01:00
parent f20ada00a2
commit 5927e4d86d
Signed by: wanderer
SSH Key Fingerprint: SHA256:Dp8+iwKHSlrMEHzE3bJnPng70I7LEsa3IJXRH/U+idQ

@ -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)