@stdlib/math-base-special-acosdf
v0.1.1
Published
Compute the arccosine (in degrees) of a single-precision floating-point number.
Downloads
62
Readme
acosdf
Compute the arccosine (in degrees) of a single-precision floating-point number.
Installation
npm install @stdlib/math-base-special-acosdfUsage
var acosdf = require( '@stdlib/math-base-special-acosdf' );acosdf( x )
Computes the arccosine (in degrees) of a single-precision floating-point number.
var sqrtf = require( '@stdlib/math-base-special-sqrtf' );
var v = acosdf( 0.0 );
// returns 90.0
v = acosdf( 0.5 );
// returns ~60.0
v = acosdf( sqrtf( 2 ) / 2 );
// returns ~45.0
v = acosdf( sqrtf( 3 ) / 2 );
// returns ~30.0
v = acosdf( NaN );
// returns NaNThe domain of x is restricted to [-1,1]. If |x| > 1, the function returns NaN.
var v = acosdf( -3.14 );
// returns NaNExamples
var uniform = require( '@stdlib/random-array-uniform' );
var logEachMap = require( '@stdlib/console-log-each-map' );
var acosdf = require( '@stdlib/math-base-special-acosdf' );
var x = uniform( 100, -1.0, 1.0, {
'dtype': 'float32'
});
logEachMap( 'acosdf(%0.4f) = %0.4f', x, acosdf );C APIs
Usage
#include "stdlib/math/base/special/acosdf.h"stdlib_base_acosdf( x )
Computes the arccosine (in degrees) of a single-precision floating-point number.
float out = stdlib_base_acosdf( 0.0f );
// returns 90.0f
out = stdlib_base_acosdf( 0.5f );
// returns ~60.0fThe function accepts the following arguments:
- x:
[in] floatinput value.
float stdlib_base_acosdf( const float x );Examples
#include "stdlib/math/base/special/acosdf.h"
#include <stdio.h>
int main( void ) {
const float x[] = { 1.0f, 1.45f, 1.89f, 2.33f, 2.78f, 3.22f, 3.66f, 4.11f, 4.55f, 5.0f };
float v;
int i;
for ( i = 0; i < 10; i++ ) {
v = stdlib_base_acosdf( x[ i ] );
printf( "acosdf(%f) = %f\n", x[ i ], v );
}
}See Also
@stdlib/math-base/special/acosd: compute the arccosine (in degrees) of a double-precision floating-point number.@stdlib/math-base/special/acosf: compute the arccosine of a single-precision floating-point number.@stdlib/math-base/special/asindf: compute the arcsine (in degrees) of a single-precision floating-point number.
Notice
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
Community
License
See LICENSE.
Copyright
Copyright © 2016-2026. The Stdlib Authors.
