Changeset 14324


Ignore:
Timestamp:
02/06/13 16:24:23 (12 years ago)
Author:
schlegel
Message:

BUG: check thet vector is one dimension, not that there is one row of data

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/qmu/dakota_out_parse.m

    r14242 r14324  
    198198%  since normfit doesn't have a dim argument, and matlab isvector is true
    199199%  for a 1xn matrix, handle the case of one row explicitly
    200 if (size(data,1) > 1)
     200if (min(size(data)) == 1)
    201201    %dmean  =mean   (data);
    202202    %dstddev=std    (data,0);
     
    224224
    225225%  divide the data into structures for consistency
    226 
    227226for i=1:length(desc)
    228227    dresp(i).descriptor=char(desc(i));
Note: See TracChangeset for help on using the changeset viewer.