Multiply two rectangular arrays, a * b, using multiple processors.
Namespace:
Imsl.Math
Assembly:
ImslCS (in ImslCS.dll) Version: 6.5.0.0
Syntax
Visual Basic (Declaration) |
---|
Public Shared Function Multiply ( _
a As Double(,), _
b As Double(,), _
processors As Integer _
) As Double(,) |
Visual C++ |
---|
public:
static array<double,2>^ Multiply(
array<double,2>^ a,
array<double,2>^ b,
int processors
) |
Parameters
- a
- Type: array<
System..::.Double
,2>[,](,)[,]
A double rectangular array.
- b
- Type: array<
System..::.Double
,2>[,](,)[,]
A double rectangular array.
- processors
- Type: System..::.Int32
An int which specifies the number of processors to use. If
processors is less than 1, then processors = 1 is used.
Return Value
The
double matrix product of
a times
b
See Also