# Standard Normal Random Numbers
> Create an iterator for generating pseudorandom numbers drawn from a [standard normal][normal] distribution using the [Improved Ziggurat][ziggurat-algorithm] algorithm.
## Usage
```javascript
var iterator = require( '@stdlib/random/iter/improved-ziggurat' );
```
#### iterator( \[options] )
Returns an iterator for generating pseudorandom numbers drawn from a [standard normal][normal] distribution using the [Improved Ziggurat][ziggurat-algorithm] algorithm.
```javascript
var it = iterator();
// returns
## Notes
- If an environment supports `Symbol.iterator`, the returned iterator is iterable.
- If PRNG state is "shared" (meaning a state array was provided during iterator creation and **not** copied) and one sets the underlying generator state to a state array having a different length, the iterator does **not** update the existing shared state and, instead, points to the newly provided state array. In order to synchronize the output of the underlying generator according to the new shared state array, the state array for **each** relevant iterator and/or PRNG must be **explicitly** set.
- If PRNG state is "shared" and one sets the underlying generator state to a state array of the same length, the PRNG state is updated (along with the state of all other iterator and/or PRNGs sharing the PRNG's state array).
## Examples
```javascript
var iterator = require( '@stdlib/random/iter/improved-ziggurat' );
var it;
var r;
// Create a seeded iterator for generating pseudorandom numbers:
it = iterator({
'seed': 1234,
'iter': 10
});
// Perform manual iteration...
while ( true ) {
r = it.next();
if ( r.done ) {
break;
}
console.log( r.value );
}
```
* * *
## References
- Doornik, Jurgen A. 2005. "An Improved Ziggurat Method to Generate Normal Random Samples." [<https://www.doornik.com/research/ziggurat.pdf>][@doornik:2005].
- Marsaglia, George, and Wai Wan Tsang. 2000. "The Ziggurat Method for Generating Random Variables." _Journal of Statistical Software_ 5 (1): 1–7. doi:[10.18637/jss.v005.i08][@marsaglia:2000b].
- Marsaglia, George. 1964. "Generating a Variable from the Tail of the Normal Distribution." _Technometrics_ 6 (1): 101–2. doi:[10.1080/00401706.1964.10490150][@marsaglia:1964b].
[ziggurat-algorithm]: https://en.wikipedia.org/wiki/Ziggurat_algorithm
[normal]: https://en.wikipedia.org/wiki/Normal_distribution
[@doornik:2005]: https://www.doornik.com/research/ziggurat.pdf
[@marsaglia:2000b]: http://dx.doi.org/10.18637/jss.v005.i08
[@marsaglia:1964b]: https://doi.org/10.1080/00401706.1964.10490150
[@stdlib/array/uint32]: https://www.npmjs.com/package/@stdlib/array-uint32