Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,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 @@ -167,7 +167,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
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
Loading