1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| %% Courbes de tendances
% initialisation
indices_linearisation = zeros(N+1,1);
indices_linearisation(Rcorr,1) = 1;
indices_linearisation(1,1) = 0;
% calcul du nombre de série
indices_linearisation(1,1) = 0;
u=find (indices_linearisation ~= 0);
nombre_serie_point = length(u)-1;
% répérage début et fin de chaque série
indices_linearisation = diff(indices_linearisation);
depart{k} = find (indices_linearisation ==1 )+1;
fin{k} = find ( indices_linearisation == -1 ); |