Changeset 7938


Ignore:
Timestamp:
04/18/11 08:16:40 (14 years ago)
Author:
Mathieu Morlighem
Message:

removed all clear all close all and merged with ISSM's results

Location:
issm/trunk/test/IsmipHomResults/plotting_scripts
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/test/IsmipHomResults/plotting_scripts/plot_exp_a.m

    r7933 r7938  
    1212%--------------------------------------------------------
    1313
    14 clear all;
    15 close all;
     14%clear all; %ISSM->THIS LINE HAS BEEN CHANGED
     15%close all; %ISSM->THIS LINE HAS BEEN CHANGED
    1616
    1717% The names of the folders (also prefix for filenames)
  • issm/trunk/test/IsmipHomResults/plotting_scripts/plot_exp_b.m

    r7908 r7938  
    1212%--------------------------------------------------------
    1313
    14 clear all;
    15 close all;
     14%clear all; %ISSM->THIS LINE HAS BEEN CHANGED
     15%close all; %ISSM->THIS LINE HAS BEEN CHANGED
    1616
    1717% The names of the folders (also prefix for filenames)
     
    167167
    168168% The font to use for the axis labels
    169 axisLabelFont = 'normal';
     169axisLabelFont = 'Arial'; %ISSM->THIS LINE HAS BEEN CHANGED
    170170% The font size to use for the axis labels
    171171axisLabelSize = 7;
     
    246246
    247247    % Plot full stokes
    248     [fh1, msg1] = jbfill(newX, fsMeanVel+fsStdVel, fsMeanVel-fsStdVel, ...
    249                        fsFillColor, fsFillColor, 1, 0.5);
    250    
    251     % Plot non-full stokes
    252     [fh2, msg2] = jbfill(newX, nfsMeanVel+nfsStdVel, nfsMeanVel-nfsStdVel, ...
    253                        nfsFillColor, nfsFillColor, 1, 0.35);               
     248    %[fh1, msg1] = jbfill(newX, fsMeanVel+fsStdVel, fsMeanVel-fsStdVel, ... %ISSM->THIS LINE HAS BEEN CHANGED
     249    %                   fsFillColor, fsFillColor, 1, 0.5);%ISSM->THIS LINE HAS BEEN CHANGED
     250    %
     251    %% Plot non-full stokes
     252    %[fh2, msg2] = jbfill(newX, nfsMeanVel+nfsStdVel, nfsMeanVel-nfsStdVel, ...%ISSM->THIS LINE HAS BEEN CHANGED
     253    %                   nfsFillColor, nfsFillColor, 1, 0.35);               %ISSM->THIS LINE HAS BEEN CHANGED
     254         [fh1 fh2]=jbfill2(newX,fsMeanVel+fsStdVel,fsMeanVel-fsStdVel,nfsMeanVel+nfsStdVel,nfsMeanVel-nfsStdVel);
    254255           
    255256    % Turn the grid on
     
    284285    % These lines plot the mean
    285286    hold on;
    286     plot(newX, fsMeanVel, 'k');
    287     set(findobj(gca,'Type','line','Color',[0 0 0]),'Color',fsFillColor,'LineWidth',2);
    288     plot(newX, nfsMeanVel, 'b');
    289     set(findobj(gca,'Type','line','Color',[0 0 1]),'Color',nfsFillColor,'LineWidth',2);
    290    
    291 end
     287    %plot(newX, fsMeanVel, 'k');%ISSM->THIS LINE HAS BEEN CHANGED
     288    %set(findobj(gca,'Type','line','Color',[0 0 0]),'Color',fsFillColor,'LineWidth',2);
     289    %plot(newX, nfsMeanVel, 'b');%ISSM->THIS LINE HAS BEEN CHANGED
     290    %set(findobj(gca,'Type','line','Color',[0 0 1]),'Color',nfsFillColor,'LineWidth',2);
     291   
     292end
     293return %ISSM->THIS LINE HAS BEEN CHANGED
    292294
    293295% Add the legend to the final subplot (in upper left corner)
     
    297299        'portrait','papertype','A4','paperunits', 'centimeters', ...
    298300        'paperposition',[1 4 21 13]);
    299 return %ISSM->THIS LINE HAS BEEN CHANGED
    300301saveas(gcf, 'expb.eps', 'psc2');
    301302
  • issm/trunk/test/IsmipHomResults/plotting_scripts/plot_exp_c.m

    r7908 r7938  
    1212%--------------------------------------------------------
    1313
    14 clear all;
    15 close all;
     14%clear all; %ISSM->THIS LINE HAS BEEN CHANGED
     15%close all; %ISSM->THIS LINE HAS BEEN CHANGED
    1616
    1717% The names of the folders (also prefix for filenames)
     
    175175
    176176% The font to use for the axis labels
    177 axisLabelFont = 'normal';
     177axisLabelFont = 'Arial'; %ISSM->THIS LINE HAS BEEN CHANGED
    178178% The font size to use for the axis labels
    179179axisLabelSize = 7;
     
    254254
    255255    % Plot full stokes
    256     [fh1, msg1] = jbfill(newX, fsMeanVel+fsStdVel, fsMeanVel-fsStdVel, ...
    257                        fsFillColor, fsFillColor, 1, 0.5);
    258    
    259     % Plot non-full stokes
    260     [fh2, msg2] = jbfill(newX, nfsMeanVel+nfsStdVel, nfsMeanVel-nfsStdVel, ...
    261                        nfsFillColor, nfsFillColor, 1, 0.35);               
     256%    [fh1, msg1] = jbfill(newX, fsMeanVel+fsStdVel, fsMeanVel-fsStdVel, ...%ISSM->THIS LINE HAS BEEN CHANGED
     257%                       fsFillColor, fsFillColor, 1, 0.5);%ISSM->THIS LINE HAS BEEN CHANGED
     258%   
     259%    % Plot non-full stokes
     260%    [fh2, msg2] = jbfill(newX, nfsMeanVel+nfsStdVel, nfsMeanVel-nfsStdVel, ...%ISSM->THIS LINE HAS BEEN CHANGED
     261%                       nfsFillColor, nfsFillColor, 1, 0.35);               %ISSM->THIS LINE HAS BEEN CHANGED
     262                [fh1 fh2]=jbfill2(newX,fsMeanVel+fsStdVel,fsMeanVel-fsStdVel,nfsMeanVel+nfsStdVel,nfsMeanVel-nfsStdVel);
    262263           
    263264    % Turn the grid on
     
    292293    % These lines plot the mean
    293294    hold on;
    294     plot(newX, fsMeanVel, 'k');
    295     set(findobj(gca,'Type','line','Color',[0 0 0]),'Color',fsFillColor,'LineWidth',2);
    296     plot(newX, nfsMeanVel, 'b');
    297     set(findobj(gca,'Type','line','Color',[0 0 1]),'Color',nfsFillColor,'LineWidth',2);
    298    
    299 end
     295    %plot(newX, fsMeanVel, 'k');%ISSM->THIS LINE HAS BEEN CHANGED
     296    %set(findobj(gca,'Type','line','Color',[0 0 0]),'Color',fsFillColor,'LineWidth',2);
     297    %plot(newX, nfsMeanVel, 'b');%ISSM->THIS LINE HAS BEEN CHANGED
     298    %set(findobj(gca,'Type','line','Color',[0 0 1]),'Color',nfsFillColor,'LineWidth',2);
     299   
     300end
     301return %ISSM->THIS LINE HAS BEEN CHANGED
    300302
    301303% Add the legend to the final subplot (in upper left corner)
     
    305307        'portrait','papertype','A4','paperunits', 'centimeters', ...
    306308        'paperposition',[1 4 21 13]);
    307 return %ISSM->THIS LINE HAS BEEN CHANGED
    308309saveas(gcf, 'expc.eps', 'psc2');
    309310
  • issm/trunk/test/IsmipHomResults/plotting_scripts/plot_exp_d.m

    r7908 r7938  
    1212%--------------------------------------------------------
    1313
    14 clear all;
    15 close all;
     14%clear all; %ISSM->THIS LINE HAS BEEN CHANGED
     15%close all; %ISSM->THIS LINE HAS BEEN CHANGED
    1616
    1717% The names of the folders (also prefix for filenames)
     
    167167
    168168% The font to use for the axis labels
    169 axisLabelFont = 'normal';
     169axisLabelFont = 'Arial'; %ISSM->THIS LINE HAS BEEN CHANGED
    170170% The font size to use for the axis labels
    171171axisLabelSize = 7;
     
    246246
    247247    % Plot full stokes
    248     [fh1, msg1] = jbfill(newX, fsMeanVel+fsStdVel, fsMeanVel-fsStdVel, ...
    249                        fsFillColor, fsFillColor, 1, 0.5);
    250    
    251     % Plot non-full stokes
    252     [fh2, msg2] = jbfill(newX, nfsMeanVel+nfsStdVel, nfsMeanVel-nfsStdVel, ...
    253                        nfsFillColor, nfsFillColor, 1, 0.35);               
     248%    [fh1, msg1] = jbfill(newX, fsMeanVel+fsStdVel, fsMeanVel-fsStdVel, ...%ISSM->THIS LINE HAS BEEN CHANGED
     249%                       fsFillColor, fsFillColor, 1, 0.5);%ISSM->THIS LINE HAS BEEN CHANGED
     250%   
     251%    % Plot non-full stokes
     252%    [fh2, msg2] = jbfill(newX, nfsMeanVel+nfsStdVel, nfsMeanVel-nfsStdVel, ...%ISSM->THIS LINE HAS BEEN CHANGED
     253%                       nfsFillColor, nfsFillColor, 1, 0.35);               %ISSM->THIS LINE HAS BEEN CHANGED
     254[fh1 fh2]=jbfill2(newX,fsMeanVel+fsStdVel,fsMeanVel-fsStdVel,nfsMeanVel+nfsStdVel,nfsMeanVel-nfsStdVel);
    254255           
    255256    % Turn the grid on
     
    284285    % These lines plot the mean
    285286    hold on;
    286     plot(newX, fsMeanVel, 'k');
    287     set(findobj(gca,'Type','line','Color',[0 0 0]),'Color',fsFillColor,'LineWidth',2);
    288     plot(newX, nfsMeanVel, 'b');
    289     set(findobj(gca,'Type','line','Color',[0 0 1]),'Color',nfsFillColor,'LineWidth',2);
    290    
    291 end
     287    %plot(newX, fsMeanVel, 'k');%ISSM->THIS LINE HAS BEEN CHANGED
     288    %set(findobj(gca,'Type','line','Color',[0 0 0]),'Color',fsFillColor,'LineWidth',2);
     289    %plot(newX, nfsMeanVel, 'b');%ISSM->THIS LINE HAS BEEN CHANGED
     290    %set(findobj(gca,'Type','line','Color',[0 0 1]),'Color',nfsFillColor,'LineWidth',2);
     291   
     292end
     293return %ISSM->THIS LINE HAS BEEN CHANGED
    292294
    293295% Add the legend to the final subplot (in upper left corner)
     
    297299        'portrait','papertype','A4','paperunits', 'centimeters', ...
    298300        'paperposition',[1 4 21 13]);
    299 return %ISSM->THIS LINE HAS BEEN CHANGED
    300301saveas(gcf, 'expd.eps', 'psc2');
    301302
  • issm/trunk/test/IsmipHomResults/plotting_scripts/plot_exp_e.m

    r7908 r7938  
    1212%--------------------------------------------------------
    1313
    14 clear all;
    15 close all;
     14%clear all; %ISSM->THIS LINE HAS BEEN CHANGED
     15%close all; %ISSM->THIS LINE HAS BEEN CHANGED
    1616
    1717% The names of the folders (also prefix for filenames)
     
    166166
    167167% The font to use for the axis labels
    168 axisLabelFont = 'normal';
     168axisLabelFont = 'Arial'; %ISSM->THIS LINE HAS BEEN CHANGED
    169169% The font size to use for the axis labels
    170170axisLabelSize = 7;
     
    245245
    246246    % Plot full stokes
    247     [fh1, msg1] = jbfill(newX, fsMeanVel+fsStdVel, fsMeanVel-fsStdVel, ...
    248                          fsFillColor, fsFillColor, 1, 0.5);
    249    
    250     % Plot non-full stokes
    251     [fh2, msg2] = jbfill(newX, nfsMeanVel+nfsStdVel, nfsMeanVel-nfsStdVel, ...
    252                          nfsFillColor, nfsFillColor, 1, 0.35);               
     247%    [fh1, msg1] = jbfill(newX, fsMeanVel+fsStdVel, fsMeanVel-fsStdVel, ...%ISSM->THIS LINE HAS BEEN CHANGED
     248%                         fsFillColor, fsFillColor, 1, 0.5);%ISSM->THIS LINE HAS BEEN CHANGED
     249%   
     250%    % Plot non-full stokes
     251%    [fh2, msg2] = jbfill(newX, nfsMeanVel+nfsStdVel, nfsMeanVel-nfsStdVel, ...%ISSM->THIS LINE HAS BEEN CHANGED
     252%                         nfsFillColor, nfsFillColor, 1, 0.35);               %ISSM->THIS LINE HAS BEEN CHANGED
     253[fh1 fh2]=jbfill2(newX,fsMeanVel+fsStdVel,fsMeanVel-fsStdVel,nfsMeanVel+nfsStdVel,nfsMeanVel-nfsStdVel);
    253254           
    254255    % Turn the grid on
     
    283284    % These lines plot the mean
    284285    hold on;
    285     plot(newX, fsMeanVel, 'k');
    286     set(findobj(gca,'Type','line','Color',[0 0 0]),'Color',fsFillColor,'LineWidth',2);
    287     plot(newX, nfsMeanVel, 'b');
    288     set(findobj(gca,'Type','line','Color',[0 0 1]),'Color',nfsFillColor,'LineWidth',2);
    289    
    290 end
     286    %plot(newX, fsMeanVel, 'k');%ISSM->THIS LINE HAS BEEN CHANGED
     287    %set(findobj(gca,'Type','line','Color',[0 0 0]),'Color',fsFillColor,'LineWidth',2);
     288    %plot(newX, nfsMeanVel, 'b');%ISSM->THIS LINE HAS BEEN CHANGED
     289    %set(findobj(gca,'Type','line','Color',[0 0 1]),'Color',nfsFillColor,'LineWidth',2);
     290   
     291end
     292return %ISSM->THIS LINE HAS BEEN CHANGED
    291293
    292294% Add the legend to the final subplot (in upper left corner)
     
    297299        'portrait','papertype','A4','paperunits', 'centimeters', ...
    298300        'paperposition',[1 4 11 17]);
    299 return %ISSM->THIS LINE HAS BEEN CHANGED
    300301saveas(gcf, 'expe.eps', 'psc2');
    301302
  • issm/trunk/test/IsmipHomResults/plotting_scripts/plot_exp_e_txz.m

    r7908 r7938  
    1212%--------------------------------------------------------
    1313
    14 clear all;
    15 close all;
     14%clear all; %ISSM->THIS LINE HAS BEEN CHANGED
     15%close all; %ISSM->THIS LINE HAS BEEN CHANGED
    1616
    1717% The names of the folders (also prefix for filenames)
     
    164164
    165165% The font to use for the axis labels
    166 axisLabelFont = 'normal';
     166axisLabelFont = 'Arial';%ISSM->THIS LINE HAS BEEN CHANGED
    167167% The font size to use for the axis labels
    168168axisLabelSize = 7;
     
    243243
    244244    % Plot full stokes
    245     [fh1, msg1] = jbfill(newX, fsMeanVel+fsStdVel, fsMeanVel-fsStdVel, ...
    246                          fsFillColor, fsFillColor, 1, 0.5);
    247    
    248     % Plot non-full stokes
    249     [fh2, msg2] = jbfill(newX, nfsMeanVel+nfsStdVel, nfsMeanVel-nfsStdVel, ...
    250                          nfsFillColor, nfsFillColor, 1, 0.35);               
     245%    [fh1, msg1] = jbfill(newX, fsMeanVel+fsStdVel, fsMeanVel-fsStdVel, ...%ISSM->THIS LINE HAS BEEN CHANGED
     246%                         fsFillColor, fsFillColor, 1, 0.5);%ISSM->THIS LINE HAS BEEN CHANGED
     247%   
     248%    % Plot non-full stokes
     249%    [fh2, msg2] = jbfill(newX, nfsMeanVel+nfsStdVel, nfsMeanVel-nfsStdVel, ...%ISSM->THIS LINE HAS BEEN CHANGED
     250%                         nfsFillColor, nfsFillColor, 1, 0.35);               %ISSM->THIS LINE HAS BEEN CHANGED
     251[fh1 fh2]=jbfill2(newX,fsMeanVel+fsStdVel,fsMeanVel-fsStdVel,nfsMeanVel+nfsStdVel,nfsMeanVel-nfsStdVel);
    251252           
    252253    % Turn the grid on
     
    281282    % These lines plot the mean
    282283    hold on;
    283     plot(newX, fsMeanVel, 'k');
    284     set(findobj(gca,'Type','line','Color',[0 0 0]),'Color',fsFillColor,'LineWidth',2);
    285     plot(newX, nfsMeanVel, 'b');
    286     set(findobj(gca,'Type','line','Color',[0 0 1]),'Color',nfsFillColor,'LineWidth',2);
     284    %plot(newX, fsMeanVel, 'k');%ISSM->THIS LINE HAS BEEN CHANGED
     285    %set(findobj(gca,'Type','line','Color',[0 0 0]),'Color',fsFillColor,'LineWidth',2);
     286    %plot(newX, nfsMeanVel, 'b');%ISSM->THIS LINE HAS BEEN CHANGED
     287    %set(findobj(gca,'Type','line','Color',[0 0 1]),'Color',nfsFillColor,'LineWidth',2);
    287288   
    288289end
     290return %ISSM->THIS LINE HAS BEEN CHANGED
    289291
    290292% Add the legend to the final subplot (in upper left corner)
     
    295297        'portrait','papertype','A4','paperunits', 'centimeters', ...
    296298        'paperposition',[1 4 11 17]);
    297 return %ISSM->THIS LINE HAS BEEN CHANGED
    298299saveas(gcf, 'expetxz.eps', 'psc2');
  • issm/trunk/test/IsmipHomResults/plotting_scripts/plot_exp_f.m

    r7908 r7938  
    1212%--------------------------------------------------------
    1313
    14 clear all;
    15 close all;
     14%clear all; %ISSM->THIS LINE HAS BEEN CHANGED
     15%close all; %ISSM->THIS LINE HAS BEEN CHANGED
    1616
    1717% The names of the folders (also prefix for filenames)
     
    201201
    202202% The font to use for the axis labels
    203 axisLabelFont = 'normal';
     203axisLabelFont = 'Arial'; %ISSM->THIS LINE HAS BEEN CHANGED
    204204% The font size to use for the axis labels
    205205axisLabelSize = 7;
     
    272272   
    273273    % Tell MATLAB which subplot we are currently on
    274     subplot(2, 1, i);
     274    subplot(2, 2, 2*i-1); %ISSM->THIS LINE HAS BEEN CHANGED
    275275   
    276276    % The fill color (rgb) for full stokes
     
    280280
    281281    % Plot full stokes
    282     [fh1, msg1] = jbfill(newX, fsMeanVel+fsStdVel, fsMeanVel-fsStdVel, ...
    283                          fsFillColor, fsFillColor, 1, 0.5);
    284    
    285     % Plot non-full stokes
    286     [fh2, msg2] = jbfill(newX, nfsMeanVel+nfsStdVel, nfsMeanVel-nfsStdVel, ...
    287                          nfsFillColor, nfsFillColor, 1, 0.35);               
     282%    [fh1, msg1] = jbfill(newX, fsMeanVel+fsStdVel, fsMeanVel-fsStdVel, ...%ISSM->THIS LINE HAS BEEN CHANGED
     283%                         fsFillColor, fsFillColor, 1, 0.5);%ISSM->THIS LINE HAS BEEN CHANGED
     284%   
     285%    % Plot non-full stokes
     286%    [fh2, msg2] = jbfill(newX, nfsMeanVel+nfsStdVel, nfsMeanVel-nfsStdVel, ...%ISSM->THIS LINE HAS BEEN CHANGED
     287%                         nfsFillColor, nfsFillColor, 1, 0.35);               %ISSM->THIS LINE HAS BEEN CHANGED
     288[fh1 fh2]=jbfill2(newX,fsMeanVel+fsStdVel,fsMeanVel-fsStdVel,nfsMeanVel+nfsStdVel,nfsMeanVel-nfsStdVel);
    288289           
    289290    % Turn the grid on
     
    318319    % These lines plot the mean
    319320    hold on;
    320     plot(newX, fsMeanVel, 'k');
    321     set(findobj(gca,'Type','line','Color',[0 0 0]),'Color',fsFillColor,'LineWidth',2);
    322     plot(newX, nfsMeanVel, 'b');
    323     set(findobj(gca,'Type','line','Color',[0 0 1]),'Color',nfsFillColor,'LineWidth',2);
     321    %plot(newX, fsMeanVel, 'k');%ISSM->THIS LINE HAS BEEN CHANGED
     322    %set(findobj(gca,'Type','line','Color',[0 0 0]),'Color',fsFillColor,'LineWidth',2);
     323    %plot(newX, nfsMeanVel, 'b');%ISSM->THIS LINE HAS BEEN CHANGED
     324    %set(findobj(gca,'Type','line','Color',[0 0 1]),'Color',nfsFillColor,'LineWidth',2);
    324325   
    325326    if (i==1)
     
    327328    end
    328329end
     330return %ISSM->THIS LINE HAS BEEN CHANGED
    329331
    330332% Add the legend to the final subplot (in upper left corner)
     
    335337        'portrait','papertype','A4','paperunits', 'centimeters', ...
    336338        'paperposition',[1 4 11 17]);
    337 return %ISSM->THIS LINE HAS BEEN CHANGED
    338339saveas(gcf, 'expf.eps', 'psc2');
    339340
  • issm/trunk/test/IsmipHomResults/plotting_scripts/plot_exp_fs.m

    r7908 r7938  
    1212%--------------------------------------------------------
    1313
    14 clear all;
    15 close all;
     14%clear all; %ISSM->THIS LINE HAS BEEN CHANGED
     15%close all; %ISSM->THIS LINE HAS BEEN CHANGED
    1616
    1717% The names of the folders (also prefix for filenames)
     
    200200
    201201% The font to use for the axis labels
    202 axisLabelFont = 'normal';
     202axisLabelFont = 'Arial'; %ISSM->THIS LINE HAS BEEN CHANGED
    203203% The font size to use for the axis labels
    204204axisLabelSize = 7;
     
    271271   
    272272    % Tell MATLAB which subplot we are currently on
    273     subplot(2, 1, i);
     273    subplot(2, 2,2*i);  %ISSM->THIS LINE HAS BEEN CHANGED
    274274   
    275275    % The fill color (rgb) for full stokes
     
    279279
    280280    % Plot full stokes
    281     [fh1, msg1] = jbfill(newX, fsMeanVel+fsStdVel, fsMeanVel-fsStdVel, ...
    282                          fsFillColor, fsFillColor, 1, 0.5);
    283    
    284     % Plot non-full stokes
    285     [fh2, msg2] = jbfill(newX, nfsMeanVel+nfsStdVel, nfsMeanVel-nfsStdVel, ...
    286                          nfsFillColor, nfsFillColor, 1, 0.35);               
     281%    [fh1, msg1] = jbfill(newX, fsMeanVel+fsStdVel, fsMeanVel-fsStdVel, ...%ISSM->THIS LINE HAS BEEN CHANGED
     282%                         fsFillColor, fsFillColor, 1, 0.5);%ISSM->THIS LINE HAS BEEN CHANGED
     283%   
     284%    % Plot non-full stokes
     285%    [fh2, msg2] = jbfill(newX, nfsMeanVel+nfsStdVel, nfsMeanVel-nfsStdVel, ...%ISSM->THIS LINE HAS BEEN CHANGED
     286%                         nfsFillColor, nfsFillColor, 1, 0.35);               %ISSM->THIS LINE HAS BEEN CHANGED
     287[fh1 fh2]=jbfill2(newX,fsMeanVel+fsStdVel,fsMeanVel-fsStdVel,nfsMeanVel+nfsStdVel,nfsMeanVel-nfsStdVel);
    287288           
    288289    % Turn the grid on
     
    317318    % These lines plot the mean
    318319    hold on;
    319     plot(newX, fsMeanVel, 'k');
    320     set(findobj(gca,'Type','line','Color',[0 0 0]),'Color',fsFillColor,'LineWidth',2);
    321     plot(newX, nfsMeanVel, 'b');
    322     set(findobj(gca,'Type','line','Color',[0 0 1]),'Color',nfsFillColor,'LineWidth',2);
     320    %plot(newX, fsMeanVel, 'k');%ISSM->THIS LINE HAS BEEN CHANGED
     321    %set(findobj(gca,'Type','line','Color',[0 0 0]),'Color',fsFillColor,'LineWidth',2);
     322    %plot(newX, nfsMeanVel, 'b');%ISSM->THIS LINE HAS BEEN CHANGED
     323    %set(findobj(gca,'Type','line','Color',[0 0 1]),'Color',nfsFillColor,'LineWidth',2);
    323324   
    324325    if (i==1)
     
    326327    end
    327328end
     329return %ISSM->THIS LINE HAS BEEN CHANGED
    328330
    329331% Add the legend to the final subplot (in upper left corner)
     
    334336        'portrait','papertype','A4','paperunits', 'centimeters', ...
    335337        'paperposition',[1 4 11 17]);
    336 return %ISSM->THIS LINE HAS BEEN CHANGED
    337338saveas(gcf, 'expfs.eps', 'psc2');
    338339
Note: See TracChangeset for help on using the changeset viewer.