Changeset 19405
- Timestamp:
- 06/16/15 09:44:21 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/plotoptions.m
r19336 r19405 129 129 nums=strsplit_strict(plotnum,'-'); 130 130 if length(nums)~=2, continue; end 131 if ~isnumeric(nums)131 if isempty(str2num(nums{1}))|isempty(str2num(nums{2})) 132 132 error(['the option #i-j is not set properly for ' field]); 133 133 end 134 for j= nums(1):nums(2),134 for j=str2num(nums{1}):str2num(nums{2}), 135 135 opt.list{j}=addfield(opt.list{j},field,rawlist{i,2}); 136 136 end
Note:
See TracChangeset
for help on using the changeset viewer.