function s = getsize(this)

if ~isempty(this.CData)
    s = size(this.CData);
    s = s(2:end);
else % Case draw to throw an exception since the lengths of the time series 
     % were incompatable
    s = [0 0];
end






