@stdlib/math-base-special-cosd
v0.2.2
Published
Compute the cosine of an angle measured in degrees.
Downloads
249
Readme
cosd
Computes the cosine of an angle measured in degrees.
Installation
npm install @stdlib/math-base-special-cosdUsage
var cosd = require( '@stdlib/math-base-special-cosd' );cosd( x )
Computes the cosine of x (in degrees).
var v = cosd( 0.0 );
// returns 1.0
v = cosd( 60.0 );
// returns ~0.5
v = cosd( 90.0 );
// returns 0.0
v = cosd( NaN );
// returns NaNExamples
var uniform = require( '@stdlib/random-array-uniform' );
var logEachMap = require( '@stdlib/console-log-each-map' );
var cosd = require( '@stdlib/math-base-special-cosd' );
var opts = {
'dtype': 'float64'
};
var x = uniform( 100, -180, 180, opts );
logEachMap( 'cosd(%0.4f) = %0.4f', x, cosd );C APIs
Usage
#include "stdlib/math/base/special/cosd.h"stdlib_base_cosd( x )
Computes the cosine of x (in degrees).
double out = stdlib_base_cosd( 0.0 );
// returns 1.0
out = stdlib_base_cosd( 60.0 );
// returns ~0.5The function accepts the following arguments:
- x:
[in] doubleinput value.
double stdlib_base_cosd( const double x );Examples
#include "stdlib/math/base/special/cosd.h"
#include <stdio.h>
int main( void ) {
const double x[] = { 0.0, 30.0, 45.0, 60.0, 90.0 };
double y;
int i;
for ( i = 0; i < 5; i++ ) {
y = stdlib_base_cosd( x[ i ] );
printf( "cosd(%lf) = %lf\n", x[ i ], y );
}
}See Also
@stdlib/math-base/special/tand: compute the tangent of an angle measured in degrees.
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.
