@@ -17,6 +17,7 @@ module stdlib_experimental_stats
17
17
interface corr
18
18
!! Pearson correlation of array elements
19
19
!! ([Specification](../page/specs/stdlib_experimental_stats.html#description))
20
+ !! version: experimental
20
21
#:for k1, t1 in RC_KINDS_TYPES
21
22
#:set RName = rname("corr",1, t1, k1)
22
23
module function ${RName}$(x, dim, mask) result(res)
@@ -107,6 +108,7 @@ module stdlib_experimental_stats
107
108
interface cov
108
109
!! Covariance of array elements
109
110
!! ([Specification](../page/specs/stdlib_experimental_stats.html#description_1))
111
+ !! version: experimental
110
112
#:for k1, t1 in RC_KINDS_TYPES
111
113
#:set RName = rname("cov",1, t1, k1)
112
114
module function ${RName}$(x, dim, mask, corrected) result(res)
@@ -204,6 +206,7 @@ module stdlib_experimental_stats
204
206
interface mean
205
207
!! Mean of array elements
206
208
!! ([Specification](../page/specs/stdlib_experimental_stats.html#description_2))
209
+ !! version: experimental
207
210
#:for k1, t1 in RC_KINDS_TYPES
208
211
#:for rank in RANKS
209
212
#:set RName = rname("mean_all",rank, t1, k1)
@@ -302,6 +305,7 @@ module stdlib_experimental_stats
302
305
interface var
303
306
!! Variance of array elements
304
307
!! ([Specification](../page/specs/stdlib_experimental_stats.html#description_4))
308
+ !! version: experimental
305
309
306
310
#:for k1, t1 in RC_KINDS_TYPES
307
311
#:for rank in RANKS
@@ -409,6 +413,7 @@ module stdlib_experimental_stats
409
413
interface moment
410
414
!! Central moment of array elements
411
415
!! ([Specification](../page/specs/stdlib_experimental_stats.html#description_3))
416
+ !! version: experimental
412
417
#:for k1, t1 in RC_KINDS_TYPES
413
418
#:for rank in RANKS
414
419
#:set RName = rname("moment_all",rank, t1, k1)
0 commit comments