Index: /issm/trunk/test/IsmipHomResults/plotting_scripts/jbfill2.m
===================================================================
--- /issm/trunk/test/IsmipHomResults/plotting_scripts/jbfill2.m	(revision 7933)
+++ /issm/trunk/test/IsmipHomResults/plotting_scripts/jbfill2.m	(revision 7933)
@@ -0,0 +1,27 @@
+function[h1,h2]=jbfill2(xpoints,upper1,lower1,upper2,lower2)
+%JBFILL2 - 
+color1=[165 207 210]/255;
+color2=[205 228 199]/255;
+color3=[146 196 169]/255;
+
+msg='';
+hold on
+
+filled1=[upper1,fliplr(lower1)];
+filled2=[upper2,fliplr(lower2)];
+xpoints=[xpoints,fliplr(xpoints)];
+
+P1.x=xpoints; P1.y=filled1; P1.hole=0;
+P2.x=xpoints; P2.y=filled2; P2.hole=0;
+addpath([issmtier() '/externalpackages/polygonclipper/install/']);
+P3=PolygonClip(P1,P2,1);
+
+
+h1=fill(xpoints,filled1,color1,'EdgeColor',color1);
+h2=fill(xpoints,filled2,color2,'EdgeColor',color2);
+
+for i=1:length(P3)
+	fill(P3(i).x,P3(i).y,color3,'EdgeColor',color3);
+end
+
+hold off
Index: sm/trunk/test/IsmipHomResults/plotting_scripts/normtest.m
===================================================================
--- /issm/trunk/test/IsmipHomResults/plotting_scripts/normtest.m	(revision 7932)
+++ 	(revision )
@@ -1,17 +1,0 @@
-clear all;
-close all;
-
-tot=20;
-
-dx=zeros(tot);
-norm=zeros(tot);
-dx(1)=1.;
-for i=1:tot
-    if i>1
-        dx(i)=dx(i-1)/2.;
-    end
-    x=1:dx(i):10;
-    norm(i)=sum(sqrt(sin(x).^2))/length(x);
-end
-
-semilogx(dx,norm,'-o');
Index: /issm/trunk/test/IsmipHomResults/plotting_scripts/plot_exp_a.m
===================================================================
--- /issm/trunk/test/IsmipHomResults/plotting_scripts/plot_exp_a.m	(revision 7932)
+++ /issm/trunk/test/IsmipHomResults/plotting_scripts/plot_exp_a.m	(revision 7933)
@@ -174,5 +174,5 @@
 
 % The font to use for the axis labels
-axisLabelFont = 'normal';
+axisLabelFont = 'Arial';  %ISSM->THIS LINE HAS BEEN CHANGED
 % The font size to use for the axis labels
 axisLabelSize = 7;
@@ -252,11 +252,12 @@
     nfsFillColor = [0.422 0.688 0.367];
 
-    % Plot full stokes
-    [fh1, msg1] = jbfill(newX, fsMeanVel+fsStdVel, fsMeanVel-fsStdVel, ...
-                       fsFillColor, fsFillColor, 1, 0.5);
+    % Plot full stokes  %ISSM->THIS LINE HAS BEEN CHANGED
+    %[fh1, msg1] = jbfill(newX, fsMeanVel+fsStdVel, fsMeanVel-fsStdVel, ... %ISSM->THIS LINE HAS BEEN CHANGED
+    %                  fsFillColor, fsFillColor, 1, 0.5); %ISSM->THIS LINE HAS BEEN CHANGED
     
     % Plot non-full stokes
-    [fh2, msg2] = jbfill(newX, nfsMeanVel+nfsStdVel, nfsMeanVel-nfsStdVel, ...
-                       nfsFillColor, nfsFillColor, 1, 0.35);               
+    %[fh2, msg2] = jbfill(newX, nfsMeanVel+nfsStdVel, nfsMeanVel-nfsStdVel, ... %ISSM->THIS LINE HAS BEEN CHANGED
+    %                  nfsFillColor, nfsFillColor, 1, 0.35);                %ISSM->THIS LINE HAS BEEN CHANGED
+	 [fh1 fh2]=jbfill2(newX,fsMeanVel+fsStdVel,fsMeanVel-fsStdVel,nfsMeanVel+nfsStdVel,nfsMeanVel-nfsStdVel);
            
     % Turn the grid on
@@ -291,10 +292,11 @@
     % These lines plot the mean
     hold on;
-    plot(newX, fsMeanVel, 'k');
-    set(findobj(gca,'Type','line','Color',[0 0 0]),'Color',fsFillColor,'LineWidth',2);
-    plot(newX, nfsMeanVel, 'b');
-    set(findobj(gca,'Type','line','Color',[0 0 1]),'Color',nfsFillColor,'LineWidth',2);
-    
-end
+    %plot(newX, fsMeanVel, 'k');  %ISSM->THIS LINE HAS BEEN CHANGED
+    %set(findobj(gca,'Type','line','Color',[0 0 0]),'Color',fsFillColor,'LineWidth',2); %ISSM->THIS LINE HAS BEEN CHANGED
+    %plot(newX, nfsMeanVel, 'b'); %ISSM->THIS LINE HAS BEEN CHANGED
+    %set(findobj(gca,'Type','line','Color',[0 0 1]),'Color',nfsFillColor,'LineWidth',2); %ISSM->THIS LINE HAS BEEN CHANGED
+    
+end
+return %ISSM->THIS LINE HAS BEEN CHANGED
 
 % Add the legend to the final subplot (in upper left corner)
@@ -304,5 +306,4 @@
         'portrait','papertype','A4','paperunits', 'centimeters', ...
         'paperposition',[1 4 21 13]);
-return %ISSM->THIS LINE HAS BEEN CHANGED
 saveas(gcf, 'expa.eps', 'psc2');
 
