TP-traitement-audio-visuel/TP2/estimation_lois_n.m
2023-06-22 20:47:16 +02:00

7 lines
106 B
Matlab

function [moyenne, ecarttype] = estimation_lois_n(X)
moyenne = mean(X);
ecarttype = std(X);
end