7 lines
178 B
Mathematica
7 lines
178 B
Mathematica
|
function [d_estime,sigma_estime] = estimation_d_sigma_bis(liste_d,liste_VC)
|
||
|
[~, index] = min(liste_VC);
|
||
|
d_estime = liste_d(index);
|
||
|
|
||
|
sigma_estime = std(liste_VC);
|
||
|
end
|