(row, cell int, val float64)
| 133 | } |
| 134 | |
| 135 | func (tsr *String) SetFloatRowCell(row, cell int, val float64) { |
| 136 | _, sz := tsr.Shp.RowCellSize() |
| 137 | tsr.Values[row*sz+cell] = Float64ToString(val) |
| 138 | } |
| 139 | |
| 140 | // Floats sets []float64 slice of all elements in the tensor |
| 141 | // (length is ensured to be sufficient). |
nothing calls this directly
no test coverage detected