  | DoubleMatrixApply(FuncDouble, Double, Double, DoubleMatrix) Method | 
            Returns a new matrix with the same size as this matrix, whose values are
            the result of applying the given binary function to each element of this matrix.
            The first parameter to the binary function is the matrix element; the
            second parameter is the corresponding element of the passed matrix.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DoubleMatrix Apply(
	Func<double, double, double> function,
	DoubleMatrix B
)
Public Function Apply ( 
	function As Func(Of Double, Double, Double),
	B As DoubleMatrix
) As DoubleMatrix
public:
DoubleMatrix^ Apply(
	Func<double, double, double>^ function, 
	DoubleMatrix^ B
)
member Apply : 
        function : Func<float, float, float> * 
        B : DoubleMatrix -> DoubleMatrix Parameters
- function  FuncDouble, Double, Double
 - 
            A delegate object representing a function that
            takes two double parameters and returns a double.
            
 - B  DoubleMatrix
 - Another matrix.
 
Return Value
DoubleMatrixA matrix 
C with the same size as self and with
            
C[i,j]=function(this[i,j],B[i,j]).
Exceptions| Exception | Condition | 
|---|
| MismatchedSizeException | Thrown if the passed matrix
            does not have the same dimensions as this matrix. | 
See Also