devsq
Sum of squared deviations from the mean.
Syntax
Section titled “Syntax”v = devsq(number1, number2, ...)Description
Section titled “Description”Returns sum((x - mean(x))^2) — the total squared deviation. Used internally in variance computations; rarely needed directly except for educational or specific statistical use.
Example
Section titled “Example”devsq(1, 2, 3, 4, 5) % 10