Changeset 12374


Ignore:
Timestamp:
06/06/12 14:06:26 (13 years ago)
Author:
Mathieu Morlighem
Message:

Added profile plot

Location:
issm/trunk-jpl/src/m/model
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/model/plot/plot_manager.m

    r11249 r12374  
    165165if exist(options,'sectionvalue')
    166166        plot_section(md,data,options,nlines,ncols,i);
     167        return;
     168end
     169
     170%Figure out if this is a Profile plot
     171if exist(options,'profile')
     172        plot_profile(md,data,options,nlines,ncols,i);
    167173        return;
    168174end
  • issm/trunk-jpl/src/m/model/plot/plotdoc.m

    r12193 r12374  
    9494disp('       ''showsection'': show section used by ''sectionvalue'' (string ''on'' or a number of labels)');
    9595disp('       ''sectionvalue'': give the value of data on a profile given by an Argus file (string ''Argusfile_name.exp'')');
     96disp('       ''profile'': give the value of data along a vertical profile ([xlocation ylocation])');
    9697disp('       ''smooth'': smooth element data (string ''yes'' or integer)');
    9798disp('       ''title'': same as standard matlab option');
Note: See TracChangeset for help on using the changeset viewer.