Skip to content

Commit 640bb87

Browse files
authored
Merge pull request mathnet#1106 from apacker1/svd-det-doc
Change documentation of Svd.Determinant properties
2 parents f196418 + 416c975 commit 640bb87

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

  • src/Numerics/LinearAlgebra

src/Numerics/LinearAlgebra/Complex/Factorization/Svd.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public override Complex ConditionNumber
8989
}
9090

9191
/// <summary>
92-
/// Gets the determinant of the square matrix for which the SVD was computed.
92+
/// Gets the absolute value of the determinant of the square matrix for which the SVD was computed.
9393
/// </summary>
9494
public override Complex Determinant
9595
{

src/Numerics/LinearAlgebra/Complex32/Factorization/Svd.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public override Complex32 ConditionNumber
8989
}
9090

9191
/// <summary>
92-
/// Gets the determinant of the square matrix for which the SVD was computed.
92+
/// Gets the absolute value of the determinant of the square matrix for which the SVD was computed.
9393
/// </summary>
9494
public override Complex32 Determinant
9595
{

src/Numerics/LinearAlgebra/Double/Factorization/Svd.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public override double ConditionNumber
8787
}
8888

8989
/// <summary>
90-
/// Gets the determinant of the square matrix for which the SVD was computed.
90+
/// Gets the absolute value of the determinant of the square matrix for which the SVD was computed.
9191
/// </summary>
9292
public override double Determinant
9393
{

src/Numerics/LinearAlgebra/Factorization/Svd.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ Matrix<T> ComputeW()
124124
public abstract T ConditionNumber { get; }
125125

126126
/// <summary>
127-
/// Gets the determinant of the square matrix for which the SVD was computed.
127+
/// Gets the absolute value of the determinant of the square matrix for which the SVD was computed.
128128
/// </summary>
129129
public abstract T Determinant { get; }
130130

src/Numerics/LinearAlgebra/Single/Factorization/Svd.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public override float ConditionNumber
8787
}
8888

8989
/// <summary>
90-
/// Gets the determinant of the square matrix for which the SVD was computed.
90+
/// Gets the absolute value of the determinant of the square matrix for which the SVD was computed.
9191
/// </summary>
9292
public override float Determinant
9393
{

0 commit comments

Comments
 (0)