Sdílet prostřednictvím


Matrix.Determinant Vlastnost

Definice

Získá determinant této Matrix struktury.

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

Hodnota vlastnosti

Double

Determinant tohoto Matrix.

Příklady

Tento příklad ukazuje, jak získat determinant znaku 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;
}

Platí pro