C
Christopher Dedels
How canI get the DataColumn.Expression property handle trigonometric
functions?
For example:
I have a DataTable with 1 columns named "x". I want to add a column that
shows sin(x).
dataset.Tables["trigsample"].Columns.Add("sinx", typeof(double));
dataset.Tables["trigsample"].Columns["sinx"].Expression = "sin(x)";
Any help or ideas you may have are appreciated.
Thanks,
Chris
functions?
For example:
I have a DataTable with 1 columns named "x". I want to add a column that
shows sin(x).
dataset.Tables["trigsample"].Columns.Add("sinx", typeof(double));
dataset.Tables["trigsample"].Columns["sinx"].Expression = "sin(x)";
Any help or ideas you may have are appreciated.
Thanks,
Chris