AddFloat64TensorColumn adds a new n-dimensional float64 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)
| 251 | // An outer-most Row dimension will be added to this dimensionality to create |
| 252 | // the tensor column. |
| 253 | func (dt *Table) AddFloat64TensorColumn(name string, cellSizes []int, dimNames ...string) *tensor.Float64 { |
| 254 | return AddTensorColumn[float64](dt, name, cellSizes, dimNames...).(*tensor.Float64) |
| 255 | } |
| 256 | |
| 257 | // AddFloat32Column adds a new float32 column with given name. |
| 258 | // The cells of this column hold a single scalar value. |
no outgoing calls