Skip to content

Commit feda7dd

Browse files
committed
Minor comment edit.
1 parent 31de984 commit feda7dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/_cubic_spline_evaluate/_cubic_spline_evaluate.gml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/// @param {real} t Value at which to evaluate the spline.
99
/// @return {real} Value of spline function evaluated at point t, depending on which interval if falls into, undefined in case of array size mismatch.
1010
/**
11-
* For a data set of the form [x0, x1, ..., xn], [y0, y1, ..., yn], the cubic spline consists of a
11+
* For a data set of the form [x0, x1, ..., xn], [y0, y1, ..., yn], the cubic spline
1212
* consists of n-1 piecewise polynomials of the form:
1313
* si(x) = ai (x-xi)^3 + bi (x-xi)^2 + ci (x-xi) + di
1414
* on interval (xi, x(i+1)).

0 commit comments

Comments
 (0)