MCPcopy Create free account
hub / github.com/cogentcore/core / AddFloat64Column

Method AddFloat64Column

tensor/table/table.go:245–247  ·  view source on GitHub ↗

AddFloat64Column adds a new float64 column with given name. The cells of this column hold a single scalar value.

(name string)

Source from the content-addressed store, hash-verified

243// AddFloat64Column adds a new float64 column with given name.
244// The cells of this column hold a single scalar value.
245func (dt *Table) AddFloat64Column(name string) *tensor.Float64 {
246 return AddColumn[float64](dt, name).(*tensor.Float64)
247}
248
249// AddFloat64TensorColumn adds a new n-dimensional float64 column with given name
250// and dimensionality of each _cell_.

Callers 7

NewTestTableFunction · 0.95
NewSliceTableFunction · 0.95
TestIndexViewFunction · 0.80
F64TableFunction · 0.80
PlotFunction · 0.80
ProjectColToTableMethod · 0.80
ProjectColToTableMethod · 0.80

Implementers 1

_cogentcore_org_core_plot_plots_Tableyaegicore/symbols/cogentcore_org-core-

Calls

no outgoing calls

Tested by 2

NewTestTableFunction · 0.76
TestIndexViewFunction · 0.64