1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
load TEST5;
%z=TEST5;
% surf(TEST5)
sous_matrices1 = TEST5(:,1);
sous_matrices2 = TEST5(:,2);
sous_matrices3 = TEST5(:,3);
sous_matrices4 = TEST5(:,4);
sous_matrices5 = TEST5(:,5);
sous_matrices6 = TEST5(:,6);
sous_matrices7 = TEST5(:,7);
sous_matrices8 = TEST5(:,8);
sous_matrices9 = TEST5(:,9);
sous_matrices10 = TEST5(:,10);
sous_matrices11 = TEST5(:,11);
sous_matrices12 = TEST5(:,12);
figure (1)
hold on
suptitle('Link density dynamics')
colormap(hsv(5)) % Palette Hsv avec 5 couleurs
% title('Density (veh/m)')
subplot(6,2,1),plot(sous_matrices1);
title('Link O1')
xlabel('time (s)')
ylabel('Rho')
subplot(6,2,2),plot(sous_matrices2);
title('Link O2')
xlabel('time (s)')
ylabel('Rho')
subplot(6,2,3),plot(sous_matrices3);
title('Link O3')
xlabel('time (s)')
ylabel('Rho')
subplot(6,2,4),plot(sous_matrices4);
title('Link O4')
xlabel('time (s)')
ylabel('Rho')
subplot(6,2,5),plot(sous_matrices5);
title('Link Tronc1')
xlabel('time (s)')
ylabel('Rho')
subplot(6,2,6),plot(sous_matrices6);
title('Link Tronc2')
xlabel('time (s)')
ylabel('Rho')
subplot(6,2,7),plot(sous_matrices7);
title('Link Tronc3')
xlabel('time (s)')
ylabel('Rho')
subplot(6,2,8),plot(sous_matrices8);
title('Link Tronc4')
xlabel('time (s)')
ylabel('Rho')
subplot(6,2,9),plot(sous_matrices9);
title('Link D1')
xlabel('time (s)')
ylabel('Rho')
subplot(6,2,10),plot(sous_matrices10);
title('Link D2')
xlabel('time (s)')
ylabel('Rho')
subplot(6,2,11),plot(sous_matrices11);
title('Link D3')
xlabel('time (s)')
ylabel('Rho')
subplot(6,2,12),plot(sous_matrices12);
title('Link D4')
xlabel('time (s)')
ylabel('Rho') |
Partager