Skip to content

Commit 5bcb2f8

Browse files
committed
Minor changes
- fix the doc for `RBF` class (vector -> norm) - remove vtk5 file - remove GUI in readme file
1 parent 44ddbbe commit 5bcb2f8

File tree

5 files changed

+7
-2179
lines changed

5 files changed

+7
-2179
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
* [Documentation](#documentation)
2828
* [Testing](#testing)
2929
* [Examples](#examples)
30-
* [Graphical User Interface](#graphical-user-interface)
3130
* [How to cite](#how-to-cite)
3231
* [References](#references)
3332
* [Recent works with PyGeM](#recent-works-with-pygem)

pygem/radial.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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.

tests/test_datasets/test_red_blood_cell_out_true_version6.vtk renamed to tests/test_datasets/test_red_blood_cell_out_true.vtk

File renamed without changes.

0 commit comments

Comments
 (0)