Changeset 5867
- Timestamp:
- 09/17/10 11:42:07 (15 years ago)
- 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 41 41 zlabel(getfieldvalue(options,'zlabel'),'FontSize',fontsize,'FontWeight',fontweight); 42 42 end 43 44 %xtikcs 45 if exist(options,'xtick'), set(gca,'XTick',getfieldvalue(options,'xtick')); end 46 if exist(options,'ytick'), set(gca,'YTick',getfieldvalue(options,'ytick')); end 47 if exist(options,'ztick'), set(gca,'ZTick',getfieldvalue(options,'ztick')); end 43 48 44 49 %view -
issm/trunk/src/m/classes/public/plot/plot_manager.m
r5855 r5867 140 140 %Figure out if this is a Section plot 141 141 if exist(options,'sectionvalue') 142 plot_section(md,data,options, subplotwidth,i);142 plot_section(md,data,options,nlines,ncols,i); 143 143 return; 144 144 end -
issm/trunk/src/m/classes/public/plot/plot_unit.m
r5617 r5867 10 10 edgecolor=getfieldvalue(options,'edgecolor','none'); 11 11 %P=get(gca,'pos'); 12 %P(3)=P(3)+0.0 5;12 %P(3)=P(3)+0.04; 13 13 %P(1)=P(1)-0.02; 14 14 %set(gca,'pos',P); -
issm/trunk/src/m/classes/public/plot/processdata.m
r5428 r5867 66 66 error('plotmodel error message: data provided should have 2 or 3 columns for quiver plot, and 1 for regular plot'); 67 67 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'); 70 70 end 71 71 end
Note:
See TracChangeset
for help on using the changeset viewer.