chromatictools.math module¶
Math utilities
- chromatictools.math.mantissa(x: numpy.array) numpy.ndarray¶
Remove order of magnitude from array
Args: x (array): Inputs
- Returns
Rescaled array
- Return type
array
- chromatictools.math.rmse(x: numpy.ndarray, y: numpy.ndarray) float¶
Compute the root-mean-squared error
- Parameters
x (array) – First array
y (array) – Second array
- Returns
The RMSE between x and y
- Return type
(float)