You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/math/base/tools/normhermitepoly/README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ limitations under the License.
20
20
21
21
# Normalized Hermite Polynomial
22
22
23
-
> Evaluate a normalized [Hermite polynomial][hermite-polynomial].
23
+
> Evaluate a normalized [Hermite polynomial][hermite-polynomial] using double-precision floating-point arithmetic.
24
24
25
25
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
26
26
@@ -57,7 +57,7 @@ var normhermitepoly = require( '@stdlib/math/base/tools/normhermitepoly' );
57
57
58
58
#### normhermitepoly( n, x )
59
59
60
-
Evaluates a normalized [Hermite polynomial][hermite-polynomial] of degree `n`.
60
+
Evaluates a normalized [Hermite polynomial][hermite-polynomial] of degree `n` using double-precision floating-point arithmetic.
61
61
62
62
```javascript
63
63
var v =normhermitepoly( 1, 1.0 );
@@ -78,7 +78,7 @@ v = normhermitepoly( -1, 0.5 );
78
78
79
79
#### normhermitepoly.factory( n )
80
80
81
-
Returns a `function` for evaluating a normalized [Hermite polynomial][hermite-polynomial] of degree `n`.
81
+
Returns a function for evaluating a normalized [Hermite polynomial][hermite-polynomial] of degree `n` using double-precision floating-point arithmetic.
0 commit comments