Skip to content

Commit

Permalink
#3117 fix spelling in Reduced input attribute for RowEchelonForm
Browse files Browse the repository at this point in the history
  • Loading branch information
Fraser Greenroyd committed Aug 1, 2023
1 parent f18a9aa commit a20d38d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Geometry_Engine/Compute/RowEchelonForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static partial class Compute

[Description("Computes and returns the (Reduced) Row Echelon Form of the provided 2D double array (matrix).")]
[Input("imatrix", "The matrix, as a 2D double array to compute the (reduced) row echelon form of.")]
[Input("reduced", "If true the returned matrix will have a reduced echelon form. If false, the matrix well have a row echelon form.")]
[Input("reduced", "If true the returned matrix will have a reduced echelon form. If false, the matrix will have a row echelon form.")]
[Input("tolerance", "Numerical tolerance used to determine if a value in the matrix is 0. For more information on the relationship between the numerical and geometrical tolerance in Row Echelon Form calculation, see " + nameof(REFTolerance) + " method.")]
[Output("ref", "The provided matrix in (reduced) row echelon form.")]
public static double[,] RowEchelonForm(this double[,] imatrix, bool reduced = true, double tolerance = Tolerance.Distance)
Expand Down

0 comments on commit a20d38d

Please sign in to comment.