Bonjour,

J'ai un fichier texte contenant 15200 lignes et 12 colonnes.
Je veux présenter l’évolution de chaque colonne avec une colormap.
J'ai divisé ma matrice en vecteurs comme suit :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
 
load 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);
 
hold on
figure (1)
plot(sous_matrices1)
plot(sous_matrices2)
plot(sous_matrices3)
plot(sous_matrices4)
plot(sous_matrices5)
plot(sous_matrices6)
plot(sous_matrices7)
plot(sous_matrices8)
plot(sous_matrices9)
plot(sous_matrices10)
plot(sous_matrices11)
plot(sous_matrices12)
Mais ça ne me donne pas ce que je veux