1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| colo=hsv(numel(nTest))
inc= 1 ;
for ii = nTest
% ouverture et load des fichiers voulus
nameFile = ['CT-GWC',num2str(GWC),'-',num2str(ii),'-Tau',num2str(Tau(inc)),'-PreSh',num2str(PreSh),'s.mat']
load(nameFile) % sort la matrice de valeurs test_CR
% plot des valeurs
hold on
semilogy( test_CR(:,6), abs(test_CR(:,1)),'color',colo(inc,:))
text(test_CR(end-2,6),test_CR(end-2,1),[num2str(Tau(inc)), ' Pa - t n°',num2str(ii)],'FontSize',12,'FontWeight','bold','Color',colo(inc,:))
inc = inc+1 ;
end |
Partager