Matrix.M21 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定這個 Matrix 結構之第二列第一行的值。
public:
property double M21 { double get(); void set(double value); };
public double M21 { get; set; }
member this.M21 : double with get, set
Public Property M21 As Double
屬性值
這個 Matrix 之第二列第一行的值。 預設值為 0。
範例
下列範例示範如何將兩 Matrix 個結構相乘,以及如何在宣告結構之後,將值指派給 Matrix 。
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;
}
備註
下表顯示 的配置 Matrix 。
M11 | M12 | 0 |
M21 | M22 | 0 |
OffsetX | OffsetY | 1 |