class StandardNormalGenerator extends RandomDataGenerator[Double]
Generates i.i.d. samples from the standard normal distribution.
- Annotations
- @Since("1.1.0")
- Source
- RandomDataGenerator.scala
- Alphabetic
- By Inheritance
- StandardNormalGenerator
- RandomDataGenerator
- Serializable
- Pseudorandom
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new StandardNormalGenerator()
Value Members
- def copy(): StandardNormalGenerator
Returns a copy of the RandomDataGenerator with a new instance of the rng object used in the class when applicable for non-locking concurrent usage.
Returns a copy of the RandomDataGenerator with a new instance of the rng object used in the class when applicable for non-locking concurrent usage.
- Definition Classes
- StandardNormalGenerator → RandomDataGenerator
- Annotations
- @Since("1.1.0")
- def nextValue(): Double
Returns an i.i.d.
Returns an i.i.d. sample as a generic type from an underlying distribution.
- Definition Classes
- StandardNormalGenerator → RandomDataGenerator
- Annotations
- @Since("1.1.0")
- def setSeed(seed: Long): Unit
Set random seed.
Set random seed.
- Definition Classes
- StandardNormalGenerator → Pseudorandom
- Annotations
- @Since("1.1.0")