Source for random bipolar values
const r = Bipolar.randomSource();r(); // Produce random value on -1...1 scale Copy
const r = Bipolar.randomSource();r(); // Produce random value on -1...1 scale
Options can be provided, for example
// -0.5 to 0.5 rangeBipolar.randomSource({ max: 0.5 }); Copy
// -0.5 to 0.5 rangeBipolar.randomSource({ max: 0.5 });
Consider using random if you just want a one-off random value.
Optional
Maximum value (number) or options for random generation
Source for random bipolar values
Options can be provided, for example
Consider using random if you just want a one-off random value.