Skip to content

Files

Latest commit

3c14a0f · Apr 11, 2025

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Mar 1, 2025
Mar 15, 2024
Apr 11, 2025
Jul 28, 2024
Mar 11, 2025
Mar 11, 2025
Apr 9, 2025
Apr 11, 2025
Jun 20, 2024
Jun 20, 2024
Mar 11, 2025
Sep 17, 2024

tand

Computes the tangent of an angle measured in degrees.

Usage

var tand = require( '@stdlib/math/base/special/tand' );

tand( x )

Evaluates the tangent of x (in degrees).

var v = tand( 0.0 );
// returns 0

v = tand( 60.0 );
// returns ~1.73

v = tand( 90.0 );
// returns Infinity

v = tand( NaN );
// returns NaN

Examples

var uniform = require( '@stdlib/random/array/uniform' );
var logEachMap = require( '@stdlib/console/log-each-map' );
var tand = require( '@stdlib/math/base/special/tand' );

var opts = {
    'dtype': 'float64'
};
var x = uniform( 100, -180.0, 180.0, opts );

logEachMap( 'tand(%0.4f) = %0.4f', x, tand );

C APIs

Usage

#include "stdlib/math/base/special/tand.h"

stdlib_base_tand( x )

Evaluates the tangent of x (in degrees).

double out = stdlib_base_tand( 0.0 );
// returns 0.0

out = stdlib_base_tand( 60.0 );
// returns ~1.73

The function accepts the following arguments:

  • x: [in] double input value.
double stdlib_base_tand( const double x );

Examples

#include "stdlib/math/base/special/tand.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_tand( x[ i ] );
        printf( "tand(%lf) = %lf\n", x[ i ], y );
    }
}

See Also