FrameViewAddComputedColumnT Method
Add a computed column.
Namespace: Meta.Numerics.DataAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
public void AddComputedColumn<T>(
string columnName,
Func<FrameRow, T> function
)
Public Sub AddComputedColumn(Of T) (
columnName As String,
function As Func(Of FrameRow, T)
)
public:
generic<typename T>
void AddComputedColumn(
String^ columnName,
Func<FrameRow^, T>^ function
)
member AddComputedColumn :
columnName : string *
function : Func<FrameRow, 'T> -> unit
- columnName String
- The name of the computed column.
- function FuncFrameRow, T
- The function that computes the column value.
- T
- The type of the computed value.