Fast elementwise matrix division. All matrices must have the same size.
Namespace:
CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public static void FastMatrixDivide( DoubleMatrix A, DoubleMatrix B, DoubleMatrix R ) |
| Visual Basic (Declaration) |
|---|
Public Shared Sub FastMatrixDivide ( _ A As DoubleMatrix, _ B As DoubleMatrix, _ R As DoubleMatrix _ ) |
| Visual C++ |
|---|
public: static void FastMatrixDivide( DoubleMatrix^ A, DoubleMatrix^ B, DoubleMatrix^ R ) |
Parameters
- A
- Type: CenterSpace.NMath.Core..::.DoubleMatrix
A matrix.
- B
- Type: CenterSpace.NMath.Core..::.DoubleMatrix
A matrix.
- R
- Type: CenterSpace.NMath.Core..::.DoubleMatrix
Matrix in which to store the elementwise quotient of A and B.