ComponentOne FinancialChart for WPF
Multiply(Matrix,Matrix,Matrix) Method



C1.WPF Namespace > Extensions Class > Multiply Method : Multiply(Matrix,Matrix,Matrix) Method
The first matrix to multiply.
The matrix to multiply the left by (the right matrix in the multiplication).
The product of multiplying the two matrices.
Multiplies the left matrix by the right matrix, returns the resulting matrix in the output parameter.
Syntax
'Declaration
 
<ExtensionAttribute()>
Public Overloads Shared Sub Multiply( _
   ByVal left As Matrix, _
   ByRef right As Matrix, _
   ByRef result As Matrix _
) 
'Usage
 
Dim left As Matrix
Dim right As Matrix
Dim result As Matrix
 
Extensions.Multiply(left, right, result)
[Extension()]
public static void Multiply( 
   Matrix left,
   ref Matrix right,
   out Matrix result
)
[Extension()]
public:
static void Multiply( 
   Matrix left,
   Matrix% right,
   [Out] Matrix result
) 

Parameters

left
The first matrix to multiply.
right
The matrix to multiply the left by (the right matrix in the multiplication).
result
The product of multiplying the two matrices.
See Also

Reference

Extensions Class
Extensions Members
Overload List