Changeset 7938
- Timestamp:
- 04/18/11 08:16:40 (14 years ago)
- 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 12 12 %-------------------------------------------------------- 13 13 14 clear all; 15 close all; 14 %clear all; %ISSM->THIS LINE HAS BEEN CHANGED 15 %close all; %ISSM->THIS LINE HAS BEEN CHANGED 16 16 17 17 % The names of the folders (also prefix for filenames) -
issm/trunk/test/IsmipHomResults/plotting_scripts/plot_exp_b.m
r7908 r7938 12 12 %-------------------------------------------------------- 13 13 14 clear all; 15 close all; 14 %clear all; %ISSM->THIS LINE HAS BEEN CHANGED 15 %close all; %ISSM->THIS LINE HAS BEEN CHANGED 16 16 17 17 % The names of the folders (also prefix for filenames) … … 167 167 168 168 % The font to use for the axis labels 169 axisLabelFont = ' normal';169 axisLabelFont = 'Arial'; %ISSM->THIS LINE HAS BEEN CHANGED 170 170 % The font size to use for the axis labels 171 171 axisLabelSize = 7; … … 246 246 247 247 % 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); 254 255 255 256 % Turn the grid on … … 284 285 % These lines plot the mean 285 286 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 292 end 293 return %ISSM->THIS LINE HAS BEEN CHANGED 292 294 293 295 % Add the legend to the final subplot (in upper left corner) … … 297 299 'portrait','papertype','A4','paperunits', 'centimeters', ... 298 300 'paperposition',[1 4 21 13]); 299 return %ISSM->THIS LINE HAS BEEN CHANGED300 301 saveas(gcf, 'expb.eps', 'psc2'); 301 302 -
issm/trunk/test/IsmipHomResults/plotting_scripts/plot_exp_c.m
r7908 r7938 12 12 %-------------------------------------------------------- 13 13 14 clear all; 15 close all; 14 %clear all; %ISSM->THIS LINE HAS BEEN CHANGED 15 %close all; %ISSM->THIS LINE HAS BEEN CHANGED 16 16 17 17 % The names of the folders (also prefix for filenames) … … 175 175 176 176 % The font to use for the axis labels 177 axisLabelFont = ' normal';177 axisLabelFont = 'Arial'; %ISSM->THIS LINE HAS BEEN CHANGED 178 178 % The font size to use for the axis labels 179 179 axisLabelSize = 7; … … 254 254 255 255 % 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); 262 263 263 264 % Turn the grid on … … 292 293 % These lines plot the mean 293 294 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 300 end 301 return %ISSM->THIS LINE HAS BEEN CHANGED 300 302 301 303 % Add the legend to the final subplot (in upper left corner) … … 305 307 'portrait','papertype','A4','paperunits', 'centimeters', ... 306 308 'paperposition',[1 4 21 13]); 307 return %ISSM->THIS LINE HAS BEEN CHANGED308 309 saveas(gcf, 'expc.eps', 'psc2'); 309 310 -
issm/trunk/test/IsmipHomResults/plotting_scripts/plot_exp_d.m
r7908 r7938 12 12 %-------------------------------------------------------- 13 13 14 clear all; 15 close all; 14 %clear all; %ISSM->THIS LINE HAS BEEN CHANGED 15 %close all; %ISSM->THIS LINE HAS BEEN CHANGED 16 16 17 17 % The names of the folders (also prefix for filenames) … … 167 167 168 168 % The font to use for the axis labels 169 axisLabelFont = ' normal';169 axisLabelFont = 'Arial'; %ISSM->THIS LINE HAS BEEN CHANGED 170 170 % The font size to use for the axis labels 171 171 axisLabelSize = 7; … … 246 246 247 247 % 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); 254 255 255 256 % Turn the grid on … … 284 285 % These lines plot the mean 285 286 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 292 end 293 return %ISSM->THIS LINE HAS BEEN CHANGED 292 294 293 295 % Add the legend to the final subplot (in upper left corner) … … 297 299 'portrait','papertype','A4','paperunits', 'centimeters', ... 298 300 'paperposition',[1 4 21 13]); 299 return %ISSM->THIS LINE HAS BEEN CHANGED300 301 saveas(gcf, 'expd.eps', 'psc2'); 301 302 -
issm/trunk/test/IsmipHomResults/plotting_scripts/plot_exp_e.m
r7908 r7938 12 12 %-------------------------------------------------------- 13 13 14 clear all; 15 close all; 14 %clear all; %ISSM->THIS LINE HAS BEEN CHANGED 15 %close all; %ISSM->THIS LINE HAS BEEN CHANGED 16 16 17 17 % The names of the folders (also prefix for filenames) … … 166 166 167 167 % The font to use for the axis labels 168 axisLabelFont = ' normal';168 axisLabelFont = 'Arial'; %ISSM->THIS LINE HAS BEEN CHANGED 169 169 % The font size to use for the axis labels 170 170 axisLabelSize = 7; … … 245 245 246 246 % 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); 253 254 254 255 % Turn the grid on … … 283 284 % These lines plot the mean 284 285 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 291 end 292 return %ISSM->THIS LINE HAS BEEN CHANGED 291 293 292 294 % Add the legend to the final subplot (in upper left corner) … … 297 299 'portrait','papertype','A4','paperunits', 'centimeters', ... 298 300 'paperposition',[1 4 11 17]); 299 return %ISSM->THIS LINE HAS BEEN CHANGED300 301 saveas(gcf, 'expe.eps', 'psc2'); 301 302 -
issm/trunk/test/IsmipHomResults/plotting_scripts/plot_exp_e_txz.m
r7908 r7938 12 12 %-------------------------------------------------------- 13 13 14 clear all; 15 close all; 14 %clear all; %ISSM->THIS LINE HAS BEEN CHANGED 15 %close all; %ISSM->THIS LINE HAS BEEN CHANGED 16 16 17 17 % The names of the folders (also prefix for filenames) … … 164 164 165 165 % The font to use for the axis labels 166 axisLabelFont = ' normal';166 axisLabelFont = 'Arial';%ISSM->THIS LINE HAS BEEN CHANGED 167 167 % The font size to use for the axis labels 168 168 axisLabelSize = 7; … … 243 243 244 244 % 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); 251 252 252 253 % Turn the grid on … … 281 282 % These lines plot the mean 282 283 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); 287 288 288 289 end 290 return %ISSM->THIS LINE HAS BEEN CHANGED 289 291 290 292 % Add the legend to the final subplot (in upper left corner) … … 295 297 'portrait','papertype','A4','paperunits', 'centimeters', ... 296 298 'paperposition',[1 4 11 17]); 297 return %ISSM->THIS LINE HAS BEEN CHANGED298 299 saveas(gcf, 'expetxz.eps', 'psc2'); -
issm/trunk/test/IsmipHomResults/plotting_scripts/plot_exp_f.m
r7908 r7938 12 12 %-------------------------------------------------------- 13 13 14 clear all; 15 close all; 14 %clear all; %ISSM->THIS LINE HAS BEEN CHANGED 15 %close all; %ISSM->THIS LINE HAS BEEN CHANGED 16 16 17 17 % The names of the folders (also prefix for filenames) … … 201 201 202 202 % The font to use for the axis labels 203 axisLabelFont = ' normal';203 axisLabelFont = 'Arial'; %ISSM->THIS LINE HAS BEEN CHANGED 204 204 % The font size to use for the axis labels 205 205 axisLabelSize = 7; … … 272 272 273 273 % 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 275 275 276 276 % The fill color (rgb) for full stokes … … 280 280 281 281 % 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); 288 289 289 290 % Turn the grid on … … 318 319 % These lines plot the mean 319 320 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); 324 325 325 326 if (i==1) … … 327 328 end 328 329 end 330 return %ISSM->THIS LINE HAS BEEN CHANGED 329 331 330 332 % Add the legend to the final subplot (in upper left corner) … … 335 337 'portrait','papertype','A4','paperunits', 'centimeters', ... 336 338 'paperposition',[1 4 11 17]); 337 return %ISSM->THIS LINE HAS BEEN CHANGED338 339 saveas(gcf, 'expf.eps', 'psc2'); 339 340 -
issm/trunk/test/IsmipHomResults/plotting_scripts/plot_exp_fs.m
r7908 r7938 12 12 %-------------------------------------------------------- 13 13 14 clear all; 15 close all; 14 %clear all; %ISSM->THIS LINE HAS BEEN CHANGED 15 %close all; %ISSM->THIS LINE HAS BEEN CHANGED 16 16 17 17 % The names of the folders (also prefix for filenames) … … 200 200 201 201 % The font to use for the axis labels 202 axisLabelFont = ' normal';202 axisLabelFont = 'Arial'; %ISSM->THIS LINE HAS BEEN CHANGED 203 203 % The font size to use for the axis labels 204 204 axisLabelSize = 7; … … 271 271 272 272 % 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 274 274 275 275 % The fill color (rgb) for full stokes … … 279 279 280 280 % 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); 287 288 288 289 % Turn the grid on … … 317 318 % These lines plot the mean 318 319 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); 323 324 324 325 if (i==1) … … 326 327 end 327 328 end 329 return %ISSM->THIS LINE HAS BEEN CHANGED 328 330 329 331 % Add the legend to the final subplot (in upper left corner) … … 334 336 'portrait','papertype','A4','paperunits', 'centimeters', ... 335 337 'paperposition',[1 4 11 17]); 336 return %ISSM->THIS LINE HAS BEEN CHANGED337 338 saveas(gcf, 'expfs.eps', 'psc2'); 338 339
Note:
See TracChangeset
for help on using the changeset viewer.