UNPKG

@stdlib/random-strided-chisquare

Version:

Fill a strided array with pseudorandom numbers drawn from a chi-square distribution.

480 lines (309 loc) 14.8 kB
<!-- @license Apache-2.0 Copyright (c) 2024 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> # Chi-square 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 [chi-square][@stdlib/random/base/chisquare] distribution. <section class="installation"> ## Installation ```bash npm install @stdlib/random-strided-chisquare ``` </section> <section class="usage"> ## Usage ```javascript var chisquare = require( '@stdlib/random-strided-chisquare' ); ``` #### chisquare( N, k, sk, out, so ) Fills a strided array with pseudorandom numbers drawn from a [chi-square][@stdlib/random/base/chisquare] distribution. ```javascript var Float64Array = require( '@stdlib/array-float64' ); // Create an array: var out = new Float64Array( 10 ); // Fill the array with pseudorandom numbers: chisquare( out.length, [ 2.0 ], 0, out, 1 ); ``` The function has the following parameters: - **N**: number of indexed elements. - **k**: rate parameter. - **sk**: index increment for `k`. - **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 ]; chisquare( 3, [ 2.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 array: var k0 = new Float64Array( [ 2.0, 2.0, 2.0, 2.0, 2.0, 2.0 ] ); // Create offset view: var k1 = new Float64Array( k0.buffer, k0.BYTES_PER_ELEMENT*3 ); // start at 4th element // Create an output array: var out = new Float64Array( 3 ); // Fill the output array: chisquare( out.length, k1, -1, out, 1 ); ``` #### chisquare.ndarray( N, k, sk, ok, out, so, oo ) Fills a strided array with pseudorandom numbers drawn from a [chi-square][@stdlib/random/base/chisquare] 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: chisquare.ndarray( out.length, [ 2.0 ], 0, 0, out, 1, 0 ); ``` The function has the following additional parameters: - **ok**: starting index for `k`. - **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 ]; chisquare.ndarray( 3, [ 2.0 ], 0, 0, out, 2, 1 ); ``` #### chisquare.factory( \[options] ) Returns a function for filling strided arrays with pseudorandom numbers drawn from a [chi-square][@stdlib/random/base/chisquare] distribution. ```javascript var Float64Array = require( '@stdlib/array-float64' ); var random = chisquare.factory(); // returns <Function> // Create an array: var out = new Float64Array( 10 ); // Fill the array with pseudorandom numbers: random( out.length, [ 2.0 ], 0, 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 random = chisquare.factory( opts ); var out = new Float64Array( 10 ); random( out.length, [ 2.0 ], 0, out, 1 ); ``` To seed the underlying pseudorandom number generator, set the `seed` option. ```javascript var Float64Array = require( '@stdlib/array-float64' ); var opts = { 'seed': 12345 }; var random = chisquare.factory( opts ); var out = new Float64Array( 10 ); random( out.length, [ 2.0 ], 0, out, 1 ); ``` * * * #### random.PRNG The underlying pseudorandom number generator. ```javascript var prng = chisquare.PRNG; // returns <Function> ``` #### chisquare.seed The value used to seed the underlying pseudorandom number generator. ```javascript var seed = chisquare.seed; // returns <Uint32Array> ``` If the `factory` method is provided a PRNG for uniformly distributed numbers, the associated property value on the returned function is `null`. ```javascript var minstd = require( '@stdlib/random-base-minstd-shuffle' ).normalized; var random = chisquare.factory({ 'prng': minstd }); // returns <Function> var seed = random.seed; // returns null ``` #### chisquare.seedLength Length of underlying pseudorandom number generator seed. ```javascript var len = chisquare.seedLength; // returns <number> ``` If the `factory` method is provided a PRNG for uniformly distributed numbers, the associated property value on the returned function is `null`. ```javascript var minstd = require( '@stdlib/random-base-minstd-shuffle' ).normalized; var random = chisquare.factory({ 'prng': minstd }); // returns <Function> var len = random.seedLength; // returns null ``` #### chisquare.state Writable property for getting and setting the underlying pseudorandom number generator state. ```javascript var state = chisquare.state; // returns <Uint32Array> ``` If the `factory` method is provided a PRNG for uniformly distributed numbers, the associated property value on the returned function is `null`. ```javascript var minstd = require( '@stdlib/random-base-minstd-shuffle' ).normalized; var random = chisquare.factory({ 'prng': minstd }); // returns <Function> var state = random.state; // returns null ``` #### chisquare.stateLength Length of underlying pseudorandom number generator state. ```javascript var len = chisquare.stateLength; // returns <number> ``` If the `factory` method is provided a PRNG for uniformly distributed numbers, the associated property value on the returned function is `null`. ```javascript var minstd = require( '@stdlib/random-base-minstd-shuffle' ).normalized; var random = chisquare.factory({ 'prng': minstd }); // returns <Function> var len = random.stateLength; // returns null ``` #### chisquare.byteLength Size (in bytes) of underlying pseudorandom number generator state. ```javascript var sz = chisquare.byteLength; // returns <number> ``` If the `factory` method is provided a PRNG for uniformly distributed numbers, the associated property value on the returned function is `null`. ```javascript var minstd = require( '@stdlib/random-base-minstd-shuffle' ).normalized; var random = chisquare.factory({ 'prng': minstd }); // returns <Function> var sz = random.byteLength; // returns null ``` </section> <!-- /.usage --> <section class="notes"> * * * ## Notes - If `N <= 0`, both `chisquare` and `chisquare.ndarray` leave the output array unchanged. - Both `chisquare` and `chisquare.ndarray` 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-zero-to' ); var logEach = require( '@stdlib/console-log-each' ); var chisquare = require( '@stdlib/random-strided-chisquare' ); // Specify a PRNG seed: var opts = { 'seed': 1234 }; // Create a seeded PRNG: var rand1 = chisquare.factory( opts ); // Create an array: var x1 = zeros( 10, 'float64' ); // Fill the array with pseudorandom numbers: rand1( x1.length, [ 2.0 ], 0, x1, 1 ); // Create another function for filling strided arrays: var rand2 = chisquare.factory( opts ); // returns <Function> // Create a second array: var x2 = zeros( 10, 'generic' ); // Fill the array with the same pseudorandom numbers: rand2( x2.length, [ 2.0 ], 0, x2, 1 ); // Create a list of indices: var idx = zeroTo( x1.length, 'generic' ); // 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/chisquare`][@stdlib/random/base/chisquare]</span><span class="delimiter">: </span><span class="description">Chi-square distributed pseudorandom numbers.</span> - <span class="package-name">[`@stdlib/random-array/chisquare`][@stdlib/random/array/chisquare]</span><span class="delimiter">: </span><span class="description">create an array containing pseudorandom numbers drawn from a chi-square 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-chisquare.svg [npm-url]: https://npmjs.org/package/@stdlib/random-strided-chisquare [test-image]: https://github.com/stdlib-js/random-strided-chisquare/actions/workflows/test.yml/badge.svg?branch=v0.1.2 [test-url]: https://github.com/stdlib-js/random-strided-chisquare/actions/workflows/test.yml?query=branch:v0.1.2 [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/random-strided-chisquare/main.svg [coverage-url]: https://codecov.io/github/stdlib-js/random-strided-chisquare?branch=main <!-- [dependencies-image]: https://img.shields.io/david/stdlib-js/random-strided-chisquare.svg [dependencies-url]: https://david-dm.org/stdlib-js/random-strided-chisquare/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-chisquare/tree/deno [deno-readme]: https://github.com/stdlib-js/random-strided-chisquare/blob/deno/README.md [umd-url]: https://github.com/stdlib-js/random-strided-chisquare/tree/umd [umd-readme]: https://github.com/stdlib-js/random-strided-chisquare/blob/umd/README.md [esm-url]: https://github.com/stdlib-js/random-strided-chisquare/tree/esm [esm-readme]: https://github.com/stdlib-js/random-strided-chisquare/blob/esm/README.md [branches-url]: https://github.com/stdlib-js/random-strided-chisquare/blob/main/branches.md [stdlib-license]: https://raw.githubusercontent.com/stdlib-js/random-strided-chisquare/main/LICENSE [mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray [@stdlib/random/base/chisquare]: https://www.npmjs.com/package/@stdlib/random-base-chisquare [@stdlib/array/uint32]: https://www.npmjs.com/package/@stdlib/array-uint32 <!-- <related-links> --> [@stdlib/random/array/chisquare]: https://www.npmjs.com/package/@stdlib/random-array-chisquare <!-- </related-links> --> </section> <!-- /.links -->