cotd
Compute the cotangent of an angle measured in degrees.
Usage
var cotd = require( '@stdlib/math/base/special/cotd' );
cotd( x )
Evaluates the cotangent of x
(in degrees).
var v = cotd( 0.0 );
// returns Infinity
v = cotd( 60.0 );
// returns ~0.58
v = cotd( 90.0 );
// returns 0.0
v = cotd( NaN );
// returns NaN
Examples
var linspace = require( '@stdlib/array/base/linspace' );
var cotd = require( '@stdlib/math/base/special/cotd' );
var x = linspace( -180, 180, 100 );
var i;
for ( i = 0; i < x.length; i++ ) {
console.log( cotd( x[ i ] ) );
}
C APIs
Usage
#include "stdlib/math/base/special/cotd.h"
stdlib_base_cotd( x )
Evaluates the cotangent of x
(in degrees).
double out = stdlib_base_cotd( 0.0 );
// returns Infinity
out = stdlib_base_cotd( 60.0 );
// returns ~0.58
The function accepts the following arguments:
- x:
[in] double
input value.
double stdlib_base_cotd( const double x );
Examples
#include "stdlib/math/base/special/cotd.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_cotd( x[ i ] );
printf( "cotd(%lf) = %lf\n", x[ i ], y );
}
}