Skip to content

Commit

Permalink
Merge pull request #1106 from apacker1/svd-det-doc
Browse files Browse the repository at this point in the history
Change documentation of Svd.Determinant properties
  • Loading branch information
cdrnet authored Mar 2, 2025
2 parents f196418 + 416c975 commit 640bb87
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Numerics/LinearAlgebra/Complex/Factorization/Svd.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public override Complex ConditionNumber
}

/// <summary>
/// Gets the determinant of the square matrix for which the SVD was computed.
/// Gets the absolute value of the determinant of the square matrix for which the SVD was computed.
/// </summary>
public override Complex Determinant
{
Expand Down
2 changes: 1 addition & 1 deletion src/Numerics/LinearAlgebra/Complex32/Factorization/Svd.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public override Complex32 ConditionNumber
}

/// <summary>
/// Gets the determinant of the square matrix for which the SVD was computed.
/// Gets the absolute value of the determinant of the square matrix for which the SVD was computed.
/// </summary>
public override Complex32 Determinant
{
Expand Down
2 changes: 1 addition & 1 deletion src/Numerics/LinearAlgebra/Double/Factorization/Svd.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public override double ConditionNumber
}

/// <summary>
/// Gets the determinant of the square matrix for which the SVD was computed.
/// Gets the absolute value of the determinant of the square matrix for which the SVD was computed.
/// </summary>
public override double Determinant
{
Expand Down
2 changes: 1 addition & 1 deletion src/Numerics/LinearAlgebra/Factorization/Svd.cs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ Matrix<T> ComputeW()
public abstract T ConditionNumber { get; }

/// <summary>
/// Gets the determinant of the square matrix for which the SVD was computed.
/// Gets the absolute value of the determinant of the square matrix for which the SVD was computed.
/// </summary>
public abstract T Determinant { get; }

Expand Down
2 changes: 1 addition & 1 deletion src/Numerics/LinearAlgebra/Single/Factorization/Svd.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public override float ConditionNumber
}

/// <summary>
/// Gets the determinant of the square matrix for which the SVD was computed.
/// Gets the absolute value of the determinant of the square matrix for which the SVD was computed.
/// </summary>
public override float Determinant
{
Expand Down

0 comments on commit 640bb87

Please sign in to comment.