|  | FloatSymmetricMatrixTransform(FuncSingle, Single) 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
Syntaxpublic void Transform(
	Func<float, float> function
)
Public Sub Transform ( 
	function As Func(Of Single, Single)
)
public:
void Transform(
	Func<float, float>^ function
)
member Transform : 
        function : Func<float32, float32> -> unit Parameters
- function  FuncSingle, Single
- A delegate object representing a function that
            takes a single float parameter and returns a float.
 Remarks
RemarksUpon exit, this[i,j]=function(this[i,j]).
 See Also
See Also