Vector::Determinant Method (Vector, Vector)
.NET Framework (current version)
Calculates the determinant of two vectors.
Assembly: WindowsBase (in WindowsBase.dll)
Parameters
- vector1
-
Type:
System.Windows::Vector
The first vector to evaluate.
- vector2
-
Type:
System.Windows::Vector
The second vector to evaluate.
The following example shows how to calculate the determinant of two Vector structures.
private Double determinantExample() { Vector vector1 = new Vector(20, 30); Vector vector2 = new Vector(45, 70); Double determinant; // determinant is equal to 50 determinant = Vector.Determinant(vector1, vector2); return determinant; }
.NET Framework
Available since 3.0
Available since 3.0
Show: