Matrix.M11 속성

정의

Matrix 구조체의 첫 번째 행과 첫 번째 열 값을 가져오거나 설정합니다.

public:
 property double M11 { double get(); void set(double value); };
public double M11 { get; set; }
member this.M11 : double with get, set
Public Property M11 As Double

속성 값

Double

Matrix의 첫 번째 행과 첫 번째 열 값입니다. 기본값은 1입니다.

예제

다음 예제에서는 두 곱할 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;
}

적용 대상