Converts bipolar value to a scalar
import { Bipolar } from 'https://unpkg.com/ixfx/dist/data.js';Bipolar.toScalar(-1); // 0.0Bipolar.toScalar( 0); // 0.5Bipolar.toScalar( 1); // 1.0 Copy
import { Bipolar } from 'https://unpkg.com/ixfx/dist/data.js';Bipolar.toScalar(-1); // 0.0Bipolar.toScalar( 0); // 0.5Bipolar.toScalar( 1); // 1.0
Throws an error if bipolarValue is not a number or NaN
bipolarValue
Value to convert to scalar
Scalar value on 0..1 range.
Converts bipolar value to a scalar
Throws an error if
bipolarValue
is not a number or NaN