| DoubleSymmetricMatrixTransform(FuncDouble, Double) Method |
Modifies the elements of this matrix by applying the given unary function to
each element.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public void Transform(
Func<double, double> function
)
Public Sub Transform (
function As Func(Of Double, Double)
)
public:
void Transform(
Func<double, double>^ function
)
member Transform :
function : Func<float, float> -> unit
Parameters
- function FuncDouble, Double
- A delegate object representing a function that
takes a single float parameter and returns a float.
Remarks Upon exit, this[i,j]=function(this[i,j]).
See Also