Mercurial > hg > octave-lyh
view scripts/time/etime.m @ 6116:b64fb24bf4a0
[project @ 2006-10-27 18:04:49 by jwe]
author | jwe |
---|---|
date | Fri, 27 Oct 2006 18:04:50 +0000 |
parents | 34f96dd5441b |
children | 93c65f2a5668 |
line wrap: on
line source
## Copyright (C) 1996, 1997 John W. Eaton ## ## This file is part of Octave. ## ## Octave is free software; you can redistribute it and/or modify it ## under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2, or (at your option) ## any later version. ## ## Octave is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with Octave; see the file COPYING. If not, write to the Free ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA ## 02110-1301, USA. ## -*- texinfo -*- ## @deftypefn {Function File} {} etime (@var{t1}, @var{t2}) ## Return the difference (in seconds) between two time values returned from ## @code{clock}. For example: ## ## @example ## t0 = clock (); ## # many computations later... ## elapsed_time = etime (clock (), t0); ## @end example ## ## @noindent ## will set the variable @code{elapsed_time} to the number of seconds since ## the variable @code{t0} was set. ## @seealso{tic, toc, clock, cputime} ## @end deftypefn ## Author: jwe function secs = etime (t1, t0) if (nargin != 2) print_usage (); endif [d1, s1] = datenum (t1); [d0, s0] = datenum (t0); secs = s1 - s0; endfunction %!assert(etime([1900,12,31,23,59,59],[1901,1,1,0,0,0]),-1) %!assert(etime([1900,2,28,23,59,59],[1900,3,1,0,0,0]),-1) %!assert(etime([2000,2,28,23,59,59],[2000,3,1,0,0,0]),-86401) %!assert(etime([1996,2,28,23,59,59],[1996,3,1,0,0,0]),-86401) %!test %! t1 = [1900,12,31,23,59,59; 1900,2,28,23,59,59]; %! t2 = [1901,1,1,0,0,0; 1900,3,1,0,0,0]; %! assert(etime(t2, t1), [1;1]);