AddFloat32TensorColumn adds a new n-dimensional float32 column with given name and dimensionality of each _cell_. An outer-most Row dimension will be added to this dimensionality to create the tensor column.
(name string, cellSizes []int, dimNames ...string)
| 265 | // An outer-most Row dimension will be added to this dimensionality to create |
| 266 | // the tensor column. |
| 267 | func (dt *Table) AddFloat32TensorColumn(name string, cellSizes []int, dimNames ...string) *tensor.Float32 { |
| 268 | return AddTensorColumn[float32](dt, name, cellSizes, dimNames...).(*tensor.Float32) |
| 269 | } |
| 270 | |
| 271 | // AddIntColumn adds a new int column with given name. |
| 272 | // The cells of this column hold a single scalar value. |
no outgoing calls