From 1d0e20d7e5c503dd00f428ad4f4eaaee3fa94265 Mon Sep 17 00:00:00 2001 From: GUNJ JOSHI Date: Fri, 6 Sep 2024 15:12:57 +0530 Subject: [PATCH 1/2] style: use correct heading, style fixes in math/base/special/acoversinf --- .../@stdlib/math/base/special/acoversinf/README.md | 4 ++-- .../@stdlib/math/base/special/acoversinf/docs/repl.txt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/acoversinf/README.md b/lib/node_modules/@stdlib/math/base/special/acoversinf/README.md index dae5f1a636be..aaf988e865b6 100644 --- a/lib/node_modules/@stdlib/math/base/special/acoversinf/README.md +++ b/lib/node_modules/@stdlib/math/base/special/acoversinf/README.md @@ -18,7 +18,7 @@ limitations under the License. --> -# Arccoversinef +# acoversinf > Compute the [inverse coversed sine][inverse-coversed-sine] of a single-precision floating-point number (in radians). @@ -167,7 +167,7 @@ float stdlib_base_acoversinf( const float x ); int main( void ) { const float x[] = { -5.0f, -3.89f, -2.78f, -1.67f, -0.56f, 0.56f, 1.67f, 2.78f, 3.89f, 5.0f }; - + float v; int i; for ( i = 0; i < 10; i++ ) { diff --git a/lib/node_modules/@stdlib/math/base/special/acoversinf/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/acoversinf/docs/repl.txt index 72c5f7a36ca0..89d33f5b5f1e 100644 --- a/lib/node_modules/@stdlib/math/base/special/acoversinf/docs/repl.txt +++ b/lib/node_modules/@stdlib/math/base/special/acoversinf/docs/repl.txt @@ -1,7 +1,7 @@ {{alias}}( x ) - Computes the inverse coversed sine of a single-precision - floating-point number (in radians). + Computes the inverse coversed sine of a single-precision floating-point + number (in radians). The inverse coversed sine is defined as `asin(1-x)`. From b0ac6e5f9402fc0a647bcaa78d31d6271c110a30 Mon Sep 17 00:00:00 2001 From: GUNJ JOSHI Date: Sat, 7 Sep 2024 08:34:26 +0530 Subject: [PATCH 2/2] docs: remove f from acoversinf in math equations --- .../@stdlib/math/base/special/acoversinf/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/acoversinf/README.md b/lib/node_modules/@stdlib/math/base/special/acoversinf/README.md index aaf988e865b6..95a51c73a69b 100644 --- a/lib/node_modules/@stdlib/math/base/special/acoversinf/README.md +++ b/lib/node_modules/@stdlib/math/base/special/acoversinf/README.md @@ -26,10 +26,10 @@ limitations under the License. The [inverse coversed sine][inverse-coversed-sine] is defined as - + ```math -\mathop{\mathrm{acoversinf}}(\theta) = \arcsin(1-\theta) +\mathop{\mathrm{acoversin}}(\theta) = \arcsin(1-\theta) ```