![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
correlated standard normal distribution random number generator
var correlZ = require('correlZ'),
randomZ = require('random-z'), // unit normal distribution random number generator
cholesky = require('cholesky') // cholesky decomposition
var correlMatrix = [[1], [0.2, 1], [0.2, 0.2, 1]] // lower triangle is enough
correlWeights = cholesky(correlMatrix),
correlSeeders = correlWeights.map(correlZ) // array of random number generators
var iids = correlWeights.map(randomZ) // shared identically distributed variables
// all 3 results below are different but correlated, E=0, V=1, Cor(i,j) = 0.2
var x0 = correlSeeder[0](iids),
x1 = correlSeeder[1](iids),
x2 = correlSeeder[2](iids)
The module exports a single function that takes an array of linear factors to be applied to shared standard normal Independent and identically distributed random_variables (iids) and returns a standard normal correlated random number generator.
correlZ(arrayOfLinearWeights) => randomNumberGenerator
arrayOfLinearWeights
: array linear factor for each iidrandomNumberGenerator(iids[, zSeed]) => randomNumber
iids
: array of iid valueszSeed
: optional standard normal seed for testing. Normally generated internallyNote that the linear iid weights can obtained from the correlation matrix with the cholesky module.
Released under the MIT License
[1.0.1] - 2016-10-19
FAQs
correlated standard normal distribution random number generator
The npm package correl-z receives a total of 2 weekly downloads. As such, correl-z popularity was classified as not popular.
We found that correl-z demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.