Changeset 1125


Ignore:
Timestamp:
06/26/09 11:55:44 (16 years ago)
Author:
Eric.Larour
Message:

Loop out at 100, too computationally expensive

File:
1 edited

Legend:

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

    r1 r1125  
    2626
    2727if strcmpi(md.type,'2d'),
    28         for n=1:size(segmentonneumann,1),
     28        disp('Careful, max loop is 100 for segmentonneumann plot. This is due to the heavy computational ressources needed by this routine. Uncomment next line if full plot is desired.');
     29        for n=1:100,
     30        %for n=1:size(segmentonneumann,1),
    2931
    3032                plot(md.x(segmentonneumann(n,1:2)),md.y(segmentonneumann(n,1:2)),'b-','linewidth',2);
Note: See TracChangeset for help on using the changeset viewer.