7 lines
106 B
Mathematica
7 lines
106 B
Mathematica
|
function [moyenne, ecarttype] = estimation_lois_n(X)
|
||
|
|
||
|
moyenne = mean(X);
|
||
|
ecarttype = std(X);
|
||
|
|
||
|
end
|