public void Transform(
Func<double, double> transformFunction
)
Public Sub Transform (
transformFunction As Func(Of Double, Double)
)
public:
void Transform(
Func<double, double>^ transformFunction
)
member Transform :
transformFunction : Func<float, float> -> unit
For example, to replace all values with their logarithms, apply a transform using Log(Double).
If the supplied transform function throws an exception, or returns infinite or NaN values, the transformation may be incomplete or the data corrupted.
ArgumentNullException | transformFunction is . |