@@ -17,6 +17,7 @@ module stdlib_experimental_stats
1717 interface corr
1818 !! Pearson correlation of array elements
1919 !! ([Specification](../page/specs/stdlib_experimental_stats.html#description))
20+ !! version: experimental
2021 #:for k1, t1 in RC_KINDS_TYPES
2122 #:set RName = rname("corr",1, t1, k1)
2223 module function ${RName}$(x, dim, mask) result(res)
@@ -107,6 +108,7 @@ module stdlib_experimental_stats
107108 interface cov
108109 !! Covariance of array elements
109110 !! ([Specification](../page/specs/stdlib_experimental_stats.html#description_1))
111+ !! version: experimental
110112 #:for k1, t1 in RC_KINDS_TYPES
111113 #:set RName = rname("cov",1, t1, k1)
112114 module function ${RName}$(x, dim, mask, corrected) result(res)
@@ -204,6 +206,7 @@ module stdlib_experimental_stats
204206 interface mean
205207 !! Mean of array elements
206208 !! ([Specification](../page/specs/stdlib_experimental_stats.html#description_2))
209+ !! version: experimental
207210 #:for k1, t1 in RC_KINDS_TYPES
208211 #:for rank in RANKS
209212 #:set RName = rname("mean_all",rank, t1, k1)
@@ -302,6 +305,7 @@ module stdlib_experimental_stats
302305 interface var
303306 !! Variance of array elements
304307 !! ([Specification](../page/specs/stdlib_experimental_stats.html#description_4))
308+ !! version: experimental
305309
306310 #:for k1, t1 in RC_KINDS_TYPES
307311 #:for rank in RANKS
@@ -409,6 +413,7 @@ module stdlib_experimental_stats
409413 interface moment
410414 !! Central moment of array elements
411415 !! ([Specification](../page/specs/stdlib_experimental_stats.html#description_3))
416+ !! version: experimental
412417 #:for k1, t1 in RC_KINDS_TYPES
413418 #:for rank in RANKS
414419 #:set RName = rname("moment_all",rank, t1, k1)
0 commit comments