Taal

Matrix.Multiply(Matrix, Matrix) Methode

Definitie

Vermenigvuldigt een Matrix structuur met een andere Matrix structuur.

public:
 static System::Windows::Media::Matrix Multiply(System::Windows::Media::Matrix trans1, System::Windows::Media::Matrix trans2);
public static System.Windows.Media.Matrix Multiply(System.Windows.Media.Matrix trans1, System.Windows.Media.Matrix trans2);
static member Multiply : System.Windows.Media.Matrix * System.Windows.Media.Matrix -> System.Windows.Media.Matrix
Public Shared Function Multiply (trans1 As Matrix, trans2 As Matrix) As Matrix

Parameters

trans1
Matrix

De eerste Matrix structuur die moet worden vermenigvuldigd.

trans2
Matrix

De tweede Matrix structuur die moet worden vermenigvuldigd.

Retouren

Het resultaat van vermenigvuldigen met trans1trans2.

Voorbeelden

In het volgende voorbeeld ziet u hoe u twee Matrix structuren kunt vermenigvuldigen.

private void multiplicationExample()
{

    Matrix matrix1 = new Matrix(5, 10, 15, 20, 25, 30);
    Matrix matrix2 = new Matrix(2, 4, 6, 8, 10, 12);
    
    // matrixResult is equal to (70,100,150,220,240,352) 
    Matrix matrixResult = Matrix.Multiply(matrix1, matrix2);
    
    // matrixResult2 is also
    // equal to (70,100,150,220,240,352) 
    Matrix matrixResult2 = matrix1 * matrix2;
}

Opmerkingen

Matrixvermeniging is niet commutatief. Vermenigvuldigen met trans1 is niet hetzelfde als vermenigvuldigen met trans2trans2.trans1

Van toepassing op

Zie ook