Changeset 12961
- Timestamp:
- 08/09/12 16:35:14 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/utils/Exp/expdisp.m
r12148 r12961 45 45 figure(figurenumber),hold on 46 46 for i=1:length(domain), 47 plot(domain(i).x*unitmultiplier,domain(i).y*unitmultiplier,linestyle,'linewidth',linewidth); 47 if (isnumeric(linestyle)) 48 plot(domain(i).x*unitmultiplier,domain(i).y*unitmultiplier,'Color',linestyle,'linewidth',linewidth); 49 else 50 plot(domain(i).x*unitmultiplier,domain(i).y*unitmultiplier,linestyle,'linewidth',linewidth); 51 end 48 52 end
Note:
See TracChangeset
for help on using the changeset viewer.