Fast elementwise marix product. All matrices must have the same number of
rows and columns.
Namespace:
CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public static void FastMatrixMultiply( DoubleMatrix A, DoubleMatrix B, DoubleMatrix R ) |
| Visual Basic (Declaration) |
|---|
Public Shared Sub FastMatrixMultiply ( _ A As DoubleMatrix, _ B As DoubleMatrix, _ R As DoubleMatrix _ ) |
| Visual C++ |
|---|
public: static void FastMatrixMultiply( 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 product of A and B.