diff --git a/lib/node_modules/@stdlib/math/base/special/cfloorn/README.md b/lib/node_modules/@stdlib/math/base/special/cfloorn/README.md index 5b9243651e5d..034b8ce830d1 100644 --- a/lib/node_modules/@stdlib/math/base/special/cfloorn/README.md +++ b/lib/node_modules/@stdlib/math/base/special/cfloorn/README.md @@ -263,7 +263,7 @@ int main() { ## See Also - [`@stdlib/math/base/special/cceiln`][@stdlib/math/base/special/cceiln]: round each component of a double-precision complex floating-point number to the nearest multiple of 10^n toward positive infinity. -- [`@stdlib/math/base/special/cfloor`][@stdlib/math/base/special/cfloor]: round a double-precision complex floating-point number toward negative infinity. +- [`@stdlib/math/base/special/cfloor`][@stdlib/math/base/special/cfloor]: round each component of a double-precision complex floating-point number toward negative infinity. - [`@stdlib/math/base/special/croundn`][@stdlib/math/base/special/croundn]: round each component of a double-precision complex floating-point number to the nearest multiple of 10^n. diff --git a/lib/node_modules/@stdlib/object/any-in-by/README.md b/lib/node_modules/@stdlib/object/any-in-by/README.md index 8abeb5f9ed75..f11a4a2c432c 100644 --- a/lib/node_modules/@stdlib/object/any-in-by/README.md +++ b/lib/node_modules/@stdlib/object/any-in-by/README.md @@ -183,6 +183,15 @@ bool = anyInBy( obj, threshold ); @@ -191,6 +200,18 @@ bool = anyInBy( obj, threshold ); diff --git a/lib/node_modules/@stdlib/stats/incr/nanhmean/README.md b/lib/node_modules/@stdlib/stats/incr/nanhmean/README.md index 389ef7df9502..4e95bd907588 100644 --- a/lib/node_modules/@stdlib/stats/incr/nanhmean/README.md +++ b/lib/node_modules/@stdlib/stats/incr/nanhmean/README.md @@ -32,7 +32,6 @@ The [harmonic mean][harmonic-mean] of positive real numbers `x_0, x_1, ..., x_{n \begin{align}H &= \frac{n}{\frac{1}{x_0} + \frac{1}{x_1} + \cdots + \frac{1}{x_{n-1}}} \\ &= \frac{\displaystyle n}{\displaystyle\sum_{i=0}^{n-1} \frac{1}{x_i}} \\ &= \biggl( \frac{\displaystyle\sum_{i=0}^{n-1} \frac{1}{x_i}}{\displaystyle n} \biggr)^{-1}\end{align} ``` -