Adjustments for CRAN upload
[valse.git] / reports / bazar_Emilie / ondelettes2.m
CommitLineData
3f62d540 1ondelettes
2niveauColores
3figure(2)
4subplot(6,1,1)
5plot(1:7,courbe(1:7),'b','LineWidth',2)
6hold on
7plot(8:48,courbe(8:48),'b','LineWidth',2)
8set(gca,'ytick',[])
9ylabel('z','FontSize', 30)
10set(gca, 'FontSize', 20)
11axis([0 48 -1.6 1.6])
12set(B, 'Position', [.91 .11 .03 .8150])
13subplot(6,1,2:6)
14colormap([cmapVert([1:1:end],:);cmapBleu(end:-1:1,:)]);
15 %colormap(gr(end:-1:1,:));
16indice = [3,3,6,12,24];
17indice2=[0,cumsum(indice)];
18beta = zeros(5,48);
19for j=1:indice(1)
20 for l=1:2^4
21 beta(1,(j-1)*2^4+l) = C(indice2(1)+j);
22 end
23end
24for r=2:5
25 for j=1:indice(r)
26 for l=1:2^(5-(r-1))
27 beta(r,(j-1)*2^(5-(r-1))+l) = C(indice2(r)+j);
28 end
29 end
30end
31
32
33imagesc(beta)
34ylabel('d_1 d_2 d_3 d_4 a_4','FontSize', 30)
35set(gca, 'FontSize', 20)
36%gr = gray(64);
37
38
39
40set(gca,'xtick',[],'ytick',[])
41set(gca, 'FontSize', 20)
42
43% axes('Position', [0.05 0.05 0.9 0.9], 'Visible', 'off');
44% c=colorbar ('FontSize',18);
45B=colorbar;
46set(B, 'Position', [.91 .11 .03 .8150])
47%set(gca,'Position',[.1 0.1 0.9 0.9])
48set(gca, 'FontSize', 15)
49% figure(3)
50% subplot(6,1,1)
51% plot(courbe,'LineWidth',2)
52% axis([0 48 -0.7 0.7])
53% subplot(6,1,2)
54% plot([8,24,40],C(1:3),'+','LineWidth',2)
55% axis([0 48 -1.6 1.6])
56% subplot(6,1,3)
57% plot([8:16:48],C(4:6),'+','LineWidth',2)
58% axis([0 48 -0.6 0.6])
59% subplot(6,1,4)
60% plot([4:8:48],C(7:12),'+','LineWidth',2)
61% axis([0 48 -0.4 0.4])
62% subplot(6,1,5)
63% plot([2:4:48],C(13:24),'+','LineWidth',2)
64% axis([0 48 -0.2 0.2])
65% subplot(6,1,6)
66% plot([1:2:48],C(25:48),'+','LineWidth',2)
67% axis([0 48 -0.2 0.2])