@stdlib/math-base-special-lnf v0.0.2
lnf
Evaluate the natural logarithm of a single-precision floating-point number.
Installation
npm install @stdlib/math-base-special-lnfUsage
var lnf = require( '@stdlib/math-base-special-lnf' );lnf( x )
Evaluates the natural logarithm of a single-precision floating-point number.
var v = lnf( 4.0 );
// returns ~1.386
v = lnf( 0.0 );
// returns -Infinity
v = lnf( Infinity );
// returns Infinity
v = lnf( NaN );
// returns NaNFor negative numbers, the natural logarithm is not defined.
var v = lnf( -4.0 );
// returns NaNExamples
var randu = require( '@stdlib/random-base-randu' );
var round = require( '@stdlib/math-base-special-round' );
var lnf = require( '@stdlib/math-base-special-lnf' );
var x;
var i;
for ( i = 0; i < 100; i++ ) {
x = round( randu() * 100.0 );
console.log( 'lnf(%d) = %d', x, lnf( x ) );
}C APIs
Usage
#include "stdlib/math/base/special/lnf.h"stdlib_base_lnf( x )
Evaluates the natural logarithm of a single-precision floating-point number.
float v = stdlib_base_lnf( 2.0f );
// returns ~0.693fThe function accepts the following arguments:
- x:
[in] floatinput value.
float stdlib_base_lnf( const float x );Examples
#include "stdlib/math/base/special/lnf.h"
#include <stdlib.h>
#include <stdio.h>
int main( void ) {
float out;
float x;
int i;
for ( i = 0; i < 100; i++ ) {
x = ( (float)rand() / (float)RAND_MAX ) * 100.0f;
out = stdlib_base_lnf( x );
printf( "lnf(%f) = %f\n", x, out );
}
}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.