@@ -144,7 +144,7 @@ def gaussian_spline(X, r):
144144 .. math::
145145 \\ varphi(\\ boldsymbol{x}) = e^{-\\ frac{\\ boldsymbol{x}^2}{r^2}}
146146
147- :param numpy.ndarray X: the vector x in the formula above.
147+ :param numpy.ndarray X: the norm x in the formula above.
148148 :param float r: the parameter r in the formula above.
149149
150150 :return: result: the result of the formula above.
@@ -161,7 +161,7 @@ def multi_quadratic_biharmonic_spline(X, r):
161161 .. math::
162162 \\ varphi(\\ boldsymbol{x}) = \\ sqrt{\\ boldsymbol{x}^2 + r^2}
163163
164- :param numpy.ndarray X: the vector x in the formula above.
164+ :param numpy.ndarray X: the norm x in the formula above.
165165 :param float r: the parameter r in the formula above.
166166
167167 :return: result: the result of the formula above.
@@ -179,7 +179,7 @@ def inv_multi_quadratic_biharmonic_spline(X, r):
179179 \\ varphi(\\ boldsymbol{x}) =
180180 (\\ boldsymbol{x}^2 + r^2 )^{-\\ frac{1}{2}}
181181
182- :param numpy.ndarray X: the vector x in the formula above.
182+ :param numpy.ndarray X: the norm x in the formula above.
183183 :param float r: the parameter r in the formula above.
184184
185185 :return: result: the result of the formula above.
@@ -198,7 +198,7 @@ def thin_plate_spline(X, r):
198198 \\ left(\\ frac{\\ boldsymbol{x}}{r}\\ right)^2
199199 \\ ln\\ frac{\\ boldsymbol{x}}{r}
200200
201- :param numpy.ndarray X: the vector x in the formula above.
201+ :param numpy.ndarray X: the norm x in the formula above.
202202 :param float r: the parameter r in the formula above.
203203
204204 :return: result: the result of the formula above.
@@ -219,7 +219,7 @@ def beckert_wendland_c2_basis(X, r):
219219 \\ left( 1 - \\ frac{\\ boldsymbol{x}}{r}\\ right)^4 +
220220 \\ left( 4 \\ frac{ \\ boldsymbol{x} }{r} + 1 \\ right)
221221
222- :param numpy.ndarray X: the vector x in the formula above.
222+ :param numpy.ndarray X: the norm x in the formula above.
223223 :param float r: the parameter r in the formula above.
224224
225225 :return: result: the result of the formula above.
@@ -252,7 +252,7 @@ def polyharmonic_spline(self, X, r):
252252 ~k = 2,4,6,...\\ \\
253253 \\ end{cases}
254254
255- :param numpy.ndarray X: the vector x in the formula above.
255+ :param numpy.ndarray X: the norm x in the formula above.
256256 :param float r: the parameter r in the formula above.
257257
258258 :return: result: the result of the formula above.
0 commit comments