scaleCoefficients method
Scale all of the coefficients by s
.
Implementation
void scaleCoefficients(num s) {
for (var i = 0; i < coefficients.length; ++i) {
coefficients[i] = coefficients[i] * s;
}
}
Scale all of the coefficients by s
.
void scaleCoefficients(num s) {
for (var i = 0; i < coefficients.length; ++i) {
coefficients[i] = coefficients[i] * s;
}
}