4 lines
70 B
Mathematica
4 lines
70 B
Mathematica
|
|
function rms = quadraticMean(list)
|
||
|
|
rms = sqrt(mean(list.^2));
|
||
|
|
end
|