TP-traitement-audio-visuel/TP2/estimation_lois_n.m

7 lines
106 B
Mathematica
Raw Normal View History

2023-06-22 18:47:16 +00:00
function [moyenne, ecarttype] = estimation_lois_n(X)
moyenne = mean(X);
ecarttype = std(X);
end