func (c *controller1) wy(w []float64) blas64.General { m := blas64.General{ Rows: c.wyRows(), Cols: c.h1Size + 1, } m.Stride = m.Cols m.Data = w[c.wyOffset():c.wtm1Offset()] return m }
func (c *controller1) wh1(w []float64) blas64.General { m := blas64.General{ Rows: c.h1Size, Cols: c.wh1Cols(), } m.Stride = m.Cols m.Data = w[0:c.wyOffset()] return m }