Matrix.Determinant Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient le déterminant de cette structure Matrix.
public:
property double Determinant { double get(); };
public double Determinant { get; }
member this.Determinant : double
Public ReadOnly Property Determinant As Double
Valeur de propriété
Le déterminant de cette Matrix.
Exemples
Cet exemple montre comment obtenir le déterminant d’un 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;
}