Changeset 18819


Ignore:
Timestamp:
11/21/14 12:07:56 (10 years ago)
Author:
Eric.Larour
Message:

CHG: slight change.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/scripts/ol.m

    r18802 r18819  
    11
    2         fid=fopen('runme.m','r');
    3        
     2fid=fopen('runme.m','r');
     3
     4tline = fgets(fid);
     5count=1;
     6while ischar(tline)
    47        tline = fgets(fid);
    5         count=1;
    6         while ischar(tline)
    7                 tline = fgets(fid);
    8                 if length(tline)>16,
    9                         if strcmpi(tline(1:16),'if perform(org,'''),
    10                                 disp(sprintf('%i: %s',count,tline(17:end-5)));
    11                                 count=count+1;
    12                         end
     8        if length(tline)>16,
     9                if strcmpi(tline(1:16),'if perform(org,'''),
     10                        disp(sprintf('%i: %s',count,tline(17:end-8)));
     11                        count=count+1;
    1312                end
    1413        end
     14end
Note: See TracChangeset for help on using the changeset viewer.