root/applications/mpdm/matlab/merger_2d_test.m @ 706

Revision 706, 0.5 kB (checked in by smidl, 15 years ago)

eol-native

  • Property svn:eol-style set to native
Line 
1
2itload('../merger_2d_test.it');
3XG = reshape(Grid(1,:),Npoints,Npoints);
4YG = reshape(Grid(2,:),Npoints,Npoints);
5
6figure(2);
7M1 = reshape(exp(Res1),Npoints,Npoints);
8contour(XG,YG,M1,7);
9
10figure(3);
11hold off
12mm = max(max(Res2));
13for i=1:size(Res2,1)
14    M2 = reshape(Res2(i,:),Npoints,Npoints);
15    contour(XG,YG,M2,[0:mm/7:mm]);
16    hold on
17end
18S1g=reshape(exp(S1),Npoints,Npoints);
19S2g=reshape(exp(S2),Npoints,Npoints);
20
21contour(XG,YG,M1,[0:mm/7:mm],'m:');
22contour(XG,YG,S1g,[0:mm/7:mm],'g:');
23contour(XG,YG,S2g,[0:mm/7:mm],'r:');
Note: See TracBrowser for help on using the browser.