Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Sep 7, 2024
1 parent 1d41957 commit 0accbf4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<section class="release" id="unreleased">

## Unreleased (2024-09-02)
## Unreleased (2024-09-07)

<section class="features">

Expand All @@ -22,6 +22,7 @@

<details>

- [`1233cc4`](https://github.com/stdlib-js/stdlib/commit/1233cc4f11b4ddd0c6e1c919085dc4b9fc6fa483) - **docs:** fix equations, whitespace, and line wrapping [(#2878)](https://github.com/stdlib-js/stdlib/pull/2878) _(by Gunj Joshi)_
- [`4dbd685`](https://github.com/stdlib-js/stdlib/commit/4dbd685129b1ee7a1f459b77e791314c0bef49e7) - **feat:** add `math/base/special/acovercosf` _(by Gunj Joshi)_

</details>
Expand Down
2 changes: 2 additions & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ EuniceSim142 <[email protected]>
Frank Kovacs <[email protected]>
Golden Kumar <[email protected]>
Gunj Joshi <[email protected]>
HarshaNP <[email protected]>
Harshita Kalani <[email protected]>
Hridyanshu <[email protected]>
Jaimin Godhani <[email protected]>
Expand Down Expand Up @@ -96,3 +97,4 @@ nishant-s7 <[email protected]>
orimiles5 <[email protected]>
rainn <[email protected]>
rei2hu <[email protected]>
yaswanth <[email protected]>
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ limitations under the License.

The [inverse coversed cosine][inverse-coversed-cosine] is defined as

<!-- <equation class="equation" label="eq:arccovercosine" align="center" raw="\operatorname{acovercosf}(\theta) = \arcsin(1+\theta)" alt="Inverse coversed cosine."> -->
<!-- <equation class="equation" label="eq:arccovercosine" align="center" raw="\operatorname{acovercos}(\theta) = \arcsin(1+\theta)" alt="Inverse coversed cosine."> -->

```math
\mathop{\mathrm{acovercosf}}(\theta) = \arcsin(1+\theta)
\mathop{\mathrm{acovercos}}(\theta) = \arcsin(1+\theta)
```

<!-- </equation> -->
Expand Down Expand Up @@ -200,7 +200,7 @@ float stdlib_base_acovercosf( const float x );
int main( void ) {
const float x[] = { -2.0f, -1.80f, -1.78f, -1.67f, -0.56f, -0.27f, -1.67f, -0.78f, -1.89f, 0.0f };
float v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
4 changes: 2 additions & 2 deletions docs/repl.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

{{alias}}( x )
Computes the inverse coversed cosine of a single-precision
floating-point number (in radians).
Computes the inverse coversed cosine of a single-precision floating-
point number (in radians).

The inverse coversed cosine is defined as `asin(1+x)`.

Expand Down

0 comments on commit 0accbf4

Please sign in to comment.