Dims is the gonum/mat.Matrix interface method for returning the dimensionality of the 2D Matrix. Not supported for Bits -- do not call!
()
| 300 | // Dims is the gonum/mat.Matrix interface method for returning the dimensionality of the |
| 301 | // 2D Matrix. Not supported for Bits -- do not call! |
| 302 | func (tsr *Bits) Dims() (r, c int) { |
| 303 | slog.Error("tensor Dims gonum Matrix call made on Bits Tensor; not supported") |
| 304 | return 0, 0 |
| 305 | } |
| 306 | |
| 307 | // At is the gonum/mat.Matrix interface method for returning 2D matrix element at given |
| 308 | // row, column index. Not supported for Bits -- do not call! |