Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@stdlib/math-iter-special-riemann-zeta
Advanced tools
Create an iterator which evaluates the Riemann zeta function for each iterated value.
We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.
The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.
When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.
To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!
Create an iterator which evaluates the Riemann zeta function for each iterated value.
npm install @stdlib/math-iter-special-riemann-zeta
var iterZeta = require( '@stdlib/math-iter-special-riemann-zeta' );
Returns an iterator which iteratively evaluates the Riemann zeta function.
var array2iterator = require( '@stdlib/array-to-iterator' );
var it = iterZeta( array2iterator( [ 1.1, -4.0 ] ) );
// returns <Object>
var v = it.next().value;
// returns ~10.584
v = it.next().value;
// returns 0.0
// ...
The returned iterator protocol-compliant object has the following properties:
value
property and a done
property having a boolean
value indicating whether the iterator is finished.NaN
), the returned iterator returns NaN
. If non-numeric iterated values are possible, you are advised to provide an iterator
which type checks and handles non-numeric values accordingly.Symbol.iterator
and a provided iterator is iterable, the returned iterator is iterable.var uniform = require( '@stdlib/random-iter-uniform' );
var iterZeta = require( '@stdlib/math-iter-special-riemann-zeta' );
// Create a seeded iterator for generating pseudorandom numbers:
var rand = uniform( 1.1, 50.0, {
'seed': 1234,
'iter': 10
});
// Create an iterator which consumes the pseudorandom number iterator:
var it = iterZeta( rand );
// Perform manual iteration...
var v;
while ( true ) {
v = it.next();
if ( v.done ) {
break;
}
console.log( v.value );
}
@stdlib/math-base/special/riemann-zeta
: riemann Zeta function.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.
See LICENSE.
Copyright © 2016-2024. The Stdlib Authors.
0.2.0 (2024-02-14)
<section class="commits">dea49e0
- docs: use single quotes in require calls instead of backticks (by Philipp Burckhardt)26cf434
- docs: update related packages sections (#1156) (by stdlib-bot)0dcb669
- docs: fix links (by Athan Reines)A total of 2 people contributed to this release. Thank you to the following contributors:
FAQs
Create an iterator which evaluates the Riemann zeta function for each iterated value.
The npm package @stdlib/math-iter-special-riemann-zeta receives a total of 25 weekly downloads. As such, @stdlib/math-iter-special-riemann-zeta popularity was classified as not popular.
We found that @stdlib/math-iter-special-riemann-zeta demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.