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

속성 값

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;
}

적용 대상