view m-toolbox/classes/@tsdata/evenly.m @ 52:daf4eab1a51e database-connection-manager tip

Fix. Default password should be [] not an empty string
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 07 Dec 2011 17:29:47 +0100
parents f0afece42f48
children
line wrap: on
line source

% EVENLY defines if the data is evenly sampled or not
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 
% DESCRIPTION: 
%
% CALL:     evenly = evenly(data)
%
% INPUTS:   tsdata - a tsdata object
%
% OUTPUTS:  evenly - signals whether the data is regularly sampled or not
%
% VERSION:  $Id: evenly.m,v 1.1 2010/04/30 14:56:30 nicolodi Exp $ 
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

function evenly = evenly(data)

  % if the x vector has a null dimension ether the tsdata is empty or
  % the x vector has been collapsed. in those cases the data is
  % assumed to be evenly sampled
  if isempty(data.x)
    evenly = true;
    return;
  end
  
  % otherwise we fall back to the fitfs method
  [fs, t0, uneven] = tsdata.fitfs(data.x);
  evenly = ~uneven;
  
end