Changeset 16772


Ignore:
Timestamp:
11/14/13 17:17:22 (11 years ago)
Author:
bdef
Message:

NEW : modifying the way in which single points are ploted

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/exp/expdisp.m

    r12961 r16772  
    4444
    4545figure(figurenumber),hold on
    46 for i=1:length(domain),
    47         if (isnumeric(linestyle))
    48                 plot(domain(i).x*unitmultiplier,domain(i).y*unitmultiplier,'Color',linestyle,'linewidth',linewidth);
     46for i=1:length(domain),         
     47        if domain(i).nods==1
     48                plot(domain(i).x*unitmultiplier,domain(i).y*unitmultiplier,'ok','MarkerSize',10);
    4949        else
    50                 plot(domain(i).x*unitmultiplier,domain(i).y*unitmultiplier,linestyle,'linewidth',linewidth);
    51         end
     50                if (isnumeric(linestyle))
     51                        plot(domain(i).x*unitmultiplier,domain(i).y*unitmultiplier,'Color',linestyle,'linewidth',linewidth);
     52                else
     53                        plot(domain(i).x*unitmultiplier,domain(i).y*unitmultiplier,linestyle,'linewidth',linewidth);
     54          end
     55  end
    5256end
     57
Note: See TracChangeset for help on using the changeset viewer.