@stdlib/math-base-special-riemann-zeta
v0.2.2
Published
Riemann Zeta function.
Downloads
400
Readme
Riemann Zeta Function
Riemann zeta function.
The Riemann zeta function is the analytic continuation of the infinite series
where s
is a complex variable equal to σ + ti
. The series is only convergent when the real part of s
, σ
, is greater than 1
.
Installation
npm install @stdlib/math-base-special-riemann-zeta
Usage
var zeta = require( '@stdlib/math-base-special-riemann-zeta' );
zeta( s )
Evaluates the Riemann zeta function as a function of a real variable s
(i.e., t = 0
).
var v = zeta( 1.1 );
// returns ~10.584
v = zeta( -4.0 );
// returns 0.0
v = zeta( 70.0 );
// returns 1.0
v = zeta( 0.5 );
// returns ~-1.46
v = zeta( 1.0 ); // pole
// returns NaN
v = zeta( NaN );
// returns NaN
Examples
var linspace = require( '@stdlib/array-base-linspace' );
var zeta = require( '@stdlib/math-base-special-riemann-zeta' );
var s = linspace( -50.0, 50.0, 200 );
var i;
for ( i = 0; i < s.length; i++ ) {
console.log( 's: %d, ζ(s): %d', s[ i ], zeta( s[ i ] ) );
}
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.