Changeset 19405


Ignore:
Timestamp:
06/16/15 09:44:21 (10 years ago)
Author:
Mathieu Morlighem
Message:

BUG: updated plotoptions bug for #i-j

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/classes/plotoptions.m

    r19336 r19405  
    129129                                                         nums=strsplit_strict(plotnum,'-');
    130130                                                         if length(nums)~=2, continue; end
    131                                                          if ~isnumeric(nums)
     131                                                         if isempty(str2num(nums{1}))|isempty(str2num(nums{2}))
    132132                                                                 error(['the option #i-j is not set properly for ' field]);
    133133                                                         end
    134                                                          for j=nums(1):nums(2),
     134                                                         for j=str2num(nums{1}):str2num(nums{2}),
    135135                                                                 opt.list{j}=addfield(opt.list{j},field,rawlist{i,2});
    136136                                                         end
Note: See TracChangeset for help on using the changeset viewer.