Skip to content

Commit 9615029

Browse files
Remove some Dhb and replace them with PM prefix
1 parent 86ee2d0 commit 9615029

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

src/Math-Matrix/PMSymmetricMatrix.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"
2-
This class can be instantiated like DhbMatrix via #rows:, but the user has to make sure that this matrix is indeed symmetric as this is not internally checked for speed reasons.
2+
This class can be instantiated like PMMatrix via #rows:, but the user has to make sure that this matrix is indeed symmetric as this is not internally checked for speed reasons.
33
"
44
Class {
55
#name : #PMSymmetricMatrix,

src/Math-Numerical/PMLagrangeInterpolator.class.st

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ A PMLagrangeInterpolator takes a set of points (include each with #add:) and int
44
This is appropriate for interpolation only (interior to the region of the set of values), and sensitive to several conditions.
55
66
The method value: yields an approximation at a given value of the independent variable. Calculation is deferred until value is sent. If the set of points is fixed, NewtonInterpolator precomputes the value function. If the set of points is likely to change more often than interpolated values are needed, this is a fair choice.
7-
8-
(c) Copyrights Didier BESSET, 2000
97
"
108
Class {
119
#name : #PMLagrangeInterpolator,

src/Math-Numerical/PMLanczosFormula.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"
2-
A DhbLanczosFormula is a singleton class which calculates an approximation to Gamma(x).
2+
A PMLanczosFormula is a singleton class which calculates an approximation to Gamma(x).
33
Gamma function is a continuous extension to Factorial. Gamma(x + 1) = x * Gamma(x). For integers Gamma(n) = (n-1) factorial.
44
55
This is called from Number>>gamma, and Number>>logGamma.

src/Math-Numerical/PMRombergIntegrator.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"
2-
A DhbRombergIntegrator implements the Romberg Method. This uses Richardson extrapolation on the Trapezoid method to generate a higher order estimate.
2+
A PMRombergIntegrator implements the Romberg Method. This uses Richardson extrapolation on the Trapezoid method to generate a higher order estimate.
33
44
Evenly spaced samples are used.
55

0 commit comments

Comments
 (0)