At is the gonum/mat.Matrix interface method for returning 2D matrix element at given row, column index. Not supported for Bits -- do not call!
(i, j int)
| 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! |
| 309 | func (tsr *Bits) At(i, j int) float64 { |
| 310 | slog.Error("tensor At gonum Matrix call made on Bits Tensor; not supported") |
| 311 | return 0 |
| 312 | } |
| 313 | |
| 314 | // T is the gonum/mat.Matrix transpose method. |
| 315 | // Not supported for Bits -- do not call! |