UNPKG

@stdlib/random-strided-lognormal

Version:

Fill a strided array with pseudorandom numbers drawn from a lognormal distribution.

331 lines (208 loc) 11.8 kB
<!-- @license Apache-2.0 Copyright (c) 2023 The Stdlib Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <details> <summary> About stdlib... </summary> <p>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.</p> <p>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.</p> <p>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.</p> <p>To join us in bringing numerical computing to the web, get started by checking us out on <a href="https://github.com/stdlib-js/stdlib">GitHub</a>, and please consider <a href="https://opencollective.com/stdlib">financially supporting stdlib</a>. We greatly appreciate your continued support!</p> </details> # Lognormal Random Numbers [![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] --> > Fill a strided array with pseudorandom numbers drawn from a [lognormal][@stdlib/random/base/lognormal] distribution. <section class="installation"> ## Installation ```bash npm install @stdlib/random-strided-lognormal ``` </section> <section class="usage"> ## Usage ```javascript var lognormal = require( '@stdlib/random-strided-lognormal' ); ``` #### lognormal( N, mu, sm, sigma, ss, out, so\[, options] ) Fills a strided array with pseudorandom numbers drawn from a [lognormal][@stdlib/random/base/lognormal] distribution. ```javascript var Float64Array = require( '@stdlib/array-float64' ); // Create an array: var out = new Float64Array( 10 ); // Fill the array with pseudorandom numbers: lognormal( out.length, [ 2.0 ], 0, [ 5.0 ], 0, out, 1 ); ``` The function has the following parameters: - **N**: number of indexed elements. - **mu**: location parameter. - **sm**: index increment for `mu`. - **sigma**: scale parameter. - **ss**: index increment for `sigma`. - **out**: output array. - **so**: index increment for `out`. The `N` and stride parameters determine which strided array elements are accessed at runtime. For example, to access every other value in `out`, ```javascript var out = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ]; lognormal( 3, [ 2.0 ], 0, [ 5.0 ], 0, out, 2 ); ``` Note that indexing is relative to the first index. To introduce an offset, use [`typed array`][mdn-typed-array] views. <!-- eslint-disable stdlib/capitalized-comments --> ```javascript var Float64Array = require( '@stdlib/array-float64' ); // Initial arrays... var mu0 = new Float64Array( [ 0.0, 0.0, 0.0, 2.0, 2.0, 2.0 ] ); var sigma0 = new Float64Array( [ 5.0, 5.0, 5.0, 5.0, 5.0, 5.0 ] ); // Create offset views... var mu1 = new Float64Array( mu0.buffer, mu0.BYTES_PER_ELEMENT*1 ); // start at 2nd element var sigma1 = new Float64Array( sigma0.buffer, sigma0.BYTES_PER_ELEMENT*3 ); // start at 4th element // Create an output array: var out = new Float64Array( 3 ); // Fill the output array: lognormal( out.length, mu1, -2, sigma1, 1, out, 1 ); ``` The function accepts the following `options`: - **prng**: pseudorandom number generator for generating uniformly distributed pseudorandom numbers on the interval `[0,1)`. If provided, the function **ignores** both the `state` and `seed` options. In order to seed the underlying pseudorandom number generator, one must seed the provided `prng` (assuming the provided `prng` is seedable). - **seed**: pseudorandom number generator seed. - **state**: a [`Uint32Array`][@stdlib/array/uint32] containing pseudorandom number generator state. If provided, the function ignores the `seed` option. - **copy**: `boolean` indicating whether to copy a provided pseudorandom number generator state. Setting this option to `false` allows sharing state between two or more pseudorandom number generators. Setting this option to `true` ensures that an underlying generator has exclusive control over its internal state. Default: `true`. To use a custom PRNG as the underlying source of uniformly distributed pseudorandom numbers, set the `prng` option. ```javascript var Float64Array = require( '@stdlib/array-float64' ); var minstd = require( '@stdlib/random-base-minstd' ); var opts = { 'prng': minstd.normalized }; var out = new Float64Array( 10 ); lognormal( out.length, [ 2.0 ], 0, [ 5.0 ], 0, out, 1, opts ); ``` To seed the underlying pseudorandom number generator, set the `seed` option. ```javascript var Float64Array = require( '@stdlib/array-float64' ); var opts = { 'seed': 12345 }; var out = new Float64Array( 10 ); lognormal( out.length, [ 2.0 ], 0, [ 5.0 ], 0, out, 1, opts ); ``` #### lognormal.ndarray( N, mu, sm, om, sigma, ss, os, out, so, oo\[, options] ) Fills a strided array with pseudorandom numbers drawn from a [lognormal][@stdlib/random/base/lognormal] distribution using alternative indexing semantics. ```javascript var Float64Array = require( '@stdlib/array-float64' ); // Create an array: var out = new Float64Array( 10 ); // Fill the array with pseudorandom numbers: lognormal.ndarray( out.length, [ 2.0 ], 0, 0, [ 5.0 ], 0, 0, out, 1, 0 ); ``` The function has the following additional parameters: - **om**: starting index for `mu`. - **os**: starting index for `sigma`. - **oo**: starting index for `out`. While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying `buffer`, the offset parameters support indexing semantics based on starting indices. For example, to access every other value in `out` starting from the second value, ```javascript var out = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ]; lognormal.ndarray( 3, [ 2.0 ], 0, 0, [ 5.0 ], 0, 0, out, 2, 1 ); ``` The function accepts the same `options` as documented above for `lognormal()`. </section> <!-- /.usage --> <section class="notes"> ## Notes - If `N <= 0`, both functions leave the output array unchanged. - Both functions support array-like objects having getter and setter accessors for array element access. </section> <!-- /.notes --> <section class="examples"> ## Examples <!-- eslint no-undef: "error" --> ```javascript var zeros = require( '@stdlib/array-zeros' ); var zeroTo = require( '@stdlib/array-base-zero-to' ); var logEach = require( '@stdlib/console-log-each' ); var lognormal = require( '@stdlib/random-strided-lognormal' ); // Specify a PRNG seed: var opts = { 'seed': 1234 }; // Create an array: var x1 = zeros( 10, 'float64' ); // Create a list of indices: var idx = zeroTo( x1.length ); // Fill the array with pseudorandom numbers: lognormal( x1.length, [ 2.0 ], 0, [ 5.0 ], 0, x1, 1, opts ); // Create a second array: var x2 = zeros( 10, 'generic' ); // Fill the array with the same pseudorandom numbers: lognormal( x2.length, [ 2.0 ], 0, [ 5.0 ], 0, x2, 1, opts ); // Print the array contents: logEach( 'x1[%d] = %.2f; x2[%d] = %.2f', idx, x1, idx, x2 ); ``` </section> <!-- /.examples --> <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. --> <section class="related"> * * * ## See Also - <span class="package-name">[`@stdlib/random-base/lognormal`][@stdlib/random/base/lognormal]</span><span class="delimiter">: </span><span class="description">log-normally distributed pseudorandom numbers.</span> - <span class="package-name">[`@stdlib/random-array/lognormal`][@stdlib/random/array/lognormal]</span><span class="delimiter">: </span><span class="description">create an array containing pseudorandom numbers drawn from a lognormal distribution.</span> </section> <!-- /.related --> <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> <section class="main-repo" > * * * ## Notice This package is part of [stdlib][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][stdlib], see the main project [repository][stdlib]. #### Community [![Chat][chat-image]][chat-url] --- ## License See [LICENSE][stdlib-license]. ## Copyright Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors]. </section> <!-- /.stdlib --> <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> <section class="links"> [npm-image]: http://img.shields.io/npm/v/@stdlib/random-strided-lognormal.svg [npm-url]: https://npmjs.org/package/@stdlib/random-strided-lognormal [test-image]: https://github.com/stdlib-js/random-strided-lognormal/actions/workflows/test.yml/badge.svg?branch=v0.2.2 [test-url]: https://github.com/stdlib-js/random-strided-lognormal/actions/workflows/test.yml?query=branch:v0.2.2 [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/random-strided-lognormal/main.svg [coverage-url]: https://codecov.io/github/stdlib-js/random-strided-lognormal?branch=main <!-- [dependencies-image]: https://img.shields.io/david/stdlib-js/random-strided-lognormal.svg [dependencies-url]: https://david-dm.org/stdlib-js/random-strided-lognormal/main --> [chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg [chat-url]: https://stdlib.zulipchat.com [stdlib]: https://github.com/stdlib-js/stdlib [stdlib-authors]: https://github.com/stdlib-js/stdlib/graphs/contributors [umd]: https://github.com/umdjs/umd [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules [deno-url]: https://github.com/stdlib-js/random-strided-lognormal/tree/deno [deno-readme]: https://github.com/stdlib-js/random-strided-lognormal/blob/deno/README.md [umd-url]: https://github.com/stdlib-js/random-strided-lognormal/tree/umd [umd-readme]: https://github.com/stdlib-js/random-strided-lognormal/blob/umd/README.md [esm-url]: https://github.com/stdlib-js/random-strided-lognormal/tree/esm [esm-readme]: https://github.com/stdlib-js/random-strided-lognormal/blob/esm/README.md [branches-url]: https://github.com/stdlib-js/random-strided-lognormal/blob/main/branches.md [stdlib-license]: https://raw.githubusercontent.com/stdlib-js/random-strided-lognormal/main/LICENSE [mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray [@stdlib/random/base/lognormal]: https://www.npmjs.com/package/@stdlib/random-base-lognormal [@stdlib/array/uint32]: https://www.npmjs.com/package/@stdlib/array-uint32 <!-- <related-links> --> [@stdlib/random/array/lognormal]: https://www.npmjs.com/package/@stdlib/random-array-lognormal <!-- </related-links> --> </section> <!-- /.links -->