| 18 | ) |
| 19 | |
| 20 | type deciGrid struct{ mat.Matrix } |
| 21 | |
| 22 | func (g deciGrid) Dims() (c, r int) { r, c = g.Matrix.Dims(); return c, r } |
| 23 | func (g deciGrid) Z(c, r int) float64 { return g.Matrix.At(r, c) } |
nothing calls this directly
no outgoing calls
no test coverage detected