Changeset 5867


Ignore:
Timestamp:
09/17/10 11:42:07 (15 years ago)
Author:
seroussi
Message:

plot commit

Location:
issm/trunk/src/m/classes/public/plot
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/classes/public/plot/applyoptions.m

    r5363 r5867  
    4141        zlabel(getfieldvalue(options,'zlabel'),'FontSize',fontsize,'FontWeight',fontweight);
    4242end
     43
     44%xtikcs
     45if exist(options,'xtick'), set(gca,'XTick',getfieldvalue(options,'xtick')); end
     46if exist(options,'ytick'), set(gca,'YTick',getfieldvalue(options,'ytick')); end
     47if exist(options,'ztick'), set(gca,'ZTick',getfieldvalue(options,'ztick')); end
    4348
    4449%view
  • issm/trunk/src/m/classes/public/plot/plot_manager.m

    r5855 r5867  
    140140%Figure out if this is a Section plot
    141141if exist(options,'sectionvalue')
    142         plot_section(md,data,options,subplotwidth,i);
     142        plot_section(md,data,options,nlines,ncols,i);
    143143        return;
    144144end
  • issm/trunk/src/m/classes/public/plot/plot_unit.m

    r5617 r5867  
    1010edgecolor=getfieldvalue(options,'edgecolor','none');
    1111%P=get(gca,'pos');
    12 %P(3)=P(3)+0.05;
     12%P(3)=P(3)+0.04;
    1313%P(1)=P(1)-0.02;
    1414%set(gca,'pos',P);
  • issm/trunk/src/m/classes/public/plot/processdata.m

    r5428 r5867  
    6666                                error('plotmodel error message: data provided should have 2 or 3 columns for quiver plot, and 1 for regular plot');
    6767                        end
    68                 elseif ((md.dim==2) & datasize(2)~=2),
    69                         error('plotmodel error message: data provided should have 2 columns for quiver plot, and 1 for regular plot');
     68                %elseif ((md.dim==2) & datasize(2)~=2),
     69                %       error('plotmodel error message: data provided should have 2 columns for quiver plot, and 1 for regular plot');
    7070                end
    7171        end
Note: See TracChangeset for help on using the changeset viewer.