Matrix.Determinant プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
この 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;
}