言語

Matrix.Determinant プロパティ

定義

この Matrix 構造体の決定要因を取得します。

public:
 property double Determinant { double get(); };
public double Determinant { get; }
member this.Determinant : double
Public ReadOnly Property Determinant As Double

プロパティ値

この Matrixの決定要因。

この例では、 Matrixの決定要因を取得する方法を示します。

private Double determinantExample()
{
    Matrix myMatrix = new Matrix(5, 10, 15, 20, 25, 30);
    
    // Get the determinant, which is equal to -50.
    Double determinant = myMatrix.Determinant;
    
    return determinant;
}

適用対象