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