File tree 3 files changed +4
-4
lines changed
lib/node_modules/@stdlib/stats/base/dists/chisquare/kurtosis
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ for ( i = 0; i < 10; i++ ) {
144
144
145
145
#### stdlib_base_dists_chisquare_kurtosis( k )
146
146
147
- Returns the excess kurtosis of a chi-squared distribution.
147
+ Returns the [ excess kurtosis] [ kurtosis ] of a [ chi-squared] [ chisquare-distribution ] distribution with degrees of freedom ` k ` .
148
148
149
149
``` c
150
150
double out = stdlib_base_dists_chisquare_kurtosis( 9.0 );
Original file line number Diff line number Diff line change 16
16
* limitations under the License.
17
17
*/
18
18
19
- #include <sys/time.h>
20
19
#include "stdlib/stats/base/dists/chisquare/kurtosis.h"
21
20
#include <math.h>
22
21
#include <stdio.h>
23
22
#include <stdlib.h>
24
23
#include <time.h>
24
+ #include <sys/time.h>
25
25
26
26
#define NAME "chisquare-kurtosis"
27
27
#define ITERATIONS 1000000
Original file line number Diff line number Diff line change 21
21
/**
22
22
* Returns the excess kurtosis of a chi-squared distribution.
23
23
*
24
- * @param k degrees of freedom (must be positive)
25
- * @return excess kurtosis, or NaN if input is invalid
24
+ * @param k: PositiveNumber - degrees of freedom
25
+ * @return PositiveNumber - excess kurtosis
26
26
*
27
27
* @example
28
28
* double v = stdlib_base_dists_chisquare_kurtosis( 9.0 );
You can’t perform that action at this time.
0 commit comments