Trait to estimate the mean and the variance of a set of samples.
| 4 | |
| 5 | /// Trait to estimate the mean and the variance of a set of samples. |
| 6 | pub trait Scale<T> { |
| 7 | fn scale(&self, nrm: Normalization) -> T; |
| 8 | } |
| 9 | |
| 10 | impl Scale<Matrix<f32>> for Matrix<f32> { |
| 11 |
nothing calls this directly
no outgoing calls
no test coverage detected