Changeset 27765


Ignore:
Timestamp:
05/19/23 04:46:49 (22 months ago)
Author:
Mathieu Morlighem
Message:

CHG: allow for any vector as time stamps

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/modeldata/interpMouginotAntTimeSeries1973to2018.m

    r26683 r27765  
    6868if nargin==3
    6969        % initial checks %{{{
    70         if size(T,2)>2 | size(T,1)<1 | size(T,2)<1,
     70        if ~isvector(T)
    7171                error('Size of input T not supported!');
    7272        end
     73        T=T(:);
    7374        if size(T,2)==1 & any(T(:,1)==1973),
    7475                disp(' ');
Note: See TracChangeset for help on using the changeset viewer.