4
4
#:set RC_KINDS_TYPES = REAL_KINDS_TYPES + CMPLX_KINDS_TYPES
5
5
module stdlib_experimental_stats
6
6
!! Provides support for various statistical methods. This includes currently
7
- !! descriptive statistics.
8
- !!
9
- !! __Read the [specification here](../page/specs/stdlib_experimental_stats.html).__
7
+ !! descriptive statistics
8
+ !! ([Specification](../page/specs/stdlib_experimental_stats.html))
10
9
use stdlib_experimental_kinds, only: sp, dp, qp, &
11
10
int8, int16, int32, int64
12
11
implicit none
@@ -16,8 +15,7 @@ module stdlib_experimental_stats
16
15
17
16
interface cov
18
17
!! Covariance of array elements
19
- !!
20
- !! __Read the [specification here](../page/specs/stdlib_experimental_stats.html#description)__
18
+ !! ([Specification](../page/specs/stdlib_experimental_stats.html#description))
21
19
#:for k1, t1 in RC_KINDS_TYPES
22
20
#:set RName = rname("cov",1, t1, k1)
23
21
module function ${RName}$(x, dim, mask, corrected) result(res)
@@ -114,8 +112,7 @@ module stdlib_experimental_stats
114
112
115
113
interface mean
116
114
!! Mean of array elements
117
- !!
118
- !! __Read the [specification here](../page/specs/stdlib_experimental_stats.html#description_1)__
115
+ !! ([Specification](../page/specs/stdlib_experimental_stats.html#description_1))
119
116
#:for k1, t1 in RC_KINDS_TYPES
120
117
#:for rank in RANKS
121
118
#:set RName = rname("mean_all",rank, t1, k1)
@@ -213,8 +210,7 @@ module stdlib_experimental_stats
213
210
214
211
interface var
215
212
!! Variance of array elements
216
- !!
217
- !! __Read the [specification here](../page/specs/stdlib_experimental_stats.html#description_3)__
213
+ !! ([Specification](../page/specs/stdlib_experimental_stats.html#description_3))
218
214
219
215
#:for k1, t1 in RC_KINDS_TYPES
220
216
#:for rank in RANKS
@@ -320,9 +316,8 @@ module stdlib_experimental_stats
320
316
321
317
322
318
interface moment
323
- !! Central moment of array elements
324
- !!
325
- !! __Read the [specification here](../page/specs/stdlib_experimental_stats.html#description_2)__
319
+ !! Central moment of array elements
320
+ !! ([Specification](../page/specs/stdlib_experimental_stats.html#description_2))
326
321
#:for k1, t1 in RC_KINDS_TYPES
327
322
#:for rank in RANKS
328
323
#:set RName = rname("moment_all",rank, t1, k1)
0 commit comments