@stdlib/math-base-special-ln v0.2.4
ln
Evaluate the natural logarithm of a double-precision floating-point number.
Installation
npm install @stdlib/math-base-special-ln
Usage
var ln = require( '@stdlib/math-base-special-ln' );
ln( x )
Evaluates the natural logarithm of a double-precision floating-point number.
var v = ln( 4.0 );
// returns ~1.386
v = ln( 0.0 );
// returns -Infinity
v = ln( Infinity );
// returns Infinity
v = ln( NaN );
// returns NaN
For negative numbers, the natural logarithm is not defined.
var v = ln( -4.0 );
// returns NaN
Examples
var randu = require( '@stdlib/random-base-randu' );
var round = require( '@stdlib/math-base-special-round' );
var ln = require( '@stdlib/math-base-special-ln' );
var x;
var i;
for ( i = 0; i < 100; i++ ) {
x = round( randu() * 100.0 );
console.log( 'ln(%d) = %d', x, ln( x ) );
}
C APIs
Usage
#include "stdlib/math/base/special/ln.h"
stdlib_base_ln( x )
Evaluates the natural logarithm of a double-precision floating-point number.
double v = stdlib_base_ln( 2.0 );
// returns ~0.693
The function accepts the following arguments:
- x:
[in] double
input value.
double stdlib_base_ln( const double x );
Examples
#include "stdlib/math/base/special/ln.h"
#include <stdlib.h>
#include <stdio.h>
int main( void ) {
double out;
double x;
int i;
for ( i = 0; i < 100; i++ ) {
x = ( (double)rand() / (double)RAND_MAX ) * 100.0;
out = stdlib_base_ln( x );
printf( "ln(%lf) = %lf\n", x, out );
}
}
See Also
@stdlib/math-base/special/exp
: natural exponential function.@stdlib/math-base/special/log10
: common logarithm (base ten).@stdlib/math-base/special/log1p
: evaluate the natural logarithm of 1+x.@stdlib/math-base/special/log2
: binary logarithm (base 2).
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
Copyright
Copyright © 2016-2024. The Stdlib Authors.