7 lines
236 B
Matlab
7 lines
236 B
Matlab
function [d_estime, sigma_estime] = estimation_d_sigma(liste_d, liste_erreurs_generalisation)
|
|
[~, index] = min(liste_erreurs_generalisation);
|
|
d_estime = liste_d(index);
|
|
|
|
sigma_estime = std(liste_erreurs_generalisation);
|
|
end
|