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/stats/base/dists/degenerate/mgf/README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,13 +20,13 @@ limitations under the License.
20
20
21
21
# Moment-Generating Function
22
22
23
-
> [Degenerate][degenerate] distribution moment-generating function (MGF).
23
+
> [Degenerate][degenerate-distribution] distribution moment-generating function (MGF).
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
27
27
<sectionclass="intro">
28
28
29
-
The [moment-generating function][mgf] for a [degenerate][degenerate] random variable is
29
+
The [moment-generating function][mgf] for a [degenerate][degenerate-distribution] random variable is
30
30
31
31
<!-- <equation class="equation" label="eq:degenerate_mgf" align="center" raw="M_X(t) := e^{\mu t}" alt="Moment-generating function (MGF) of a degenerate distribution."> -->
32
32
@@ -59,7 +59,7 @@ var mgf = require( '@stdlib/stats/base/dists/degenerate/mgf' );
59
59
60
60
#### mgf( t, mu )
61
61
62
-
Evaluates the moment-generating function ([MGF][mgf]) of a [degenerate][degenerate] distribution with parameter `mu` (mean).
62
+
Evaluates the moment-generating function ([MGF][mgf]) of a [degenerate][degenerate-distribution] distribution with parameter `mu` (mean).
63
63
64
64
```javascript
65
65
var y =mgf( 1.0, 1.0 );
@@ -81,7 +81,7 @@ y = mgf( 0.0, NaN );
81
81
82
82
#### mgf.factory( mu )
83
83
84
-
Returns a function for evaluating the [moment-generating function][mgf] of a [degenerate][degenerate] distribution with parameter `mu` (mean).
84
+
Returns a function for evaluating the [moment-generating function][mgf] of a [degenerate][degenerate-distribution] distribution with parameter `mu` (mean).
0 commit comments