7017
|
1 ## Copyright (C) 1996, 1997, 2006, 2007 John W. Eaton |
5596
|
2 ## |
|
3 ## This file is part of Octave. |
|
4 ## |
|
5 ## Octave is free software; you can redistribute it and/or modify it |
|
6 ## under the terms of the GNU General Public License as published by |
7016
|
7 ## the Free Software Foundation; either version 3 of the License, or (at |
|
8 ## your option) any later version. |
5596
|
9 ## |
|
10 ## Octave is distributed in the hope that it will be useful, but |
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
13 ## General Public License for more details. |
|
14 ## |
|
15 ## You should have received a copy of the GNU General Public License |
7016
|
16 ## along with Octave; see the file COPYING. If not, see |
|
17 ## <http://www.gnu.org/licenses/>. |
5596
|
18 |
|
19 ## -*- texinfo -*- |
|
20 ## @deftypefn {Function File} {} etime (@var{t1}, @var{t2}) |
|
21 ## Return the difference (in seconds) between two time values returned from |
|
22 ## @code{clock}. For example: |
|
23 ## |
|
24 ## @example |
|
25 ## t0 = clock (); |
|
26 ## # many computations later... |
|
27 ## elapsed_time = etime (clock (), t0); |
|
28 ## @end example |
|
29 ## |
|
30 ## @noindent |
|
31 ## will set the variable @code{elapsed_time} to the number of seconds since |
|
32 ## the variable @code{t0} was set. |
5642
|
33 ## @seealso{tic, toc, clock, cputime} |
5596
|
34 ## @end deftypefn |
|
35 |
|
36 ## Author: jwe |
|
37 |
|
38 function secs = etime (t1, t0) |
|
39 |
|
40 if (nargin != 2) |
6046
|
41 print_usage (); |
5596
|
42 endif |
|
43 |
5660
|
44 [d1, s1] = datenum (t1); |
|
45 [d0, s0] = datenum (t0); |
5596
|
46 |
5660
|
47 secs = s1 - s0; |
5596
|
48 |
|
49 endfunction |
5660
|
50 |
|
51 %!assert(etime([1900,12,31,23,59,59],[1901,1,1,0,0,0]),-1) |
|
52 %!assert(etime([1900,2,28,23,59,59],[1900,3,1,0,0,0]),-1) |
|
53 %!assert(etime([2000,2,28,23,59,59],[2000,3,1,0,0,0]),-86401) |
|
54 %!assert(etime([1996,2,28,23,59,59],[1996,3,1,0,0,0]),-86401) |
|
55 %!test |
|
56 %! t1 = [1900,12,31,23,59,59; 1900,2,28,23,59,59]; |
|
57 %! t2 = [1901,1,1,0,0,0; 1900,3,1,0,0,0]; |
|
58 %! assert(etime(t2, t1), [1;1]); |
7411
|
59 |
|
60 %!test |
|
61 %! t1 = [1993, 8, 20, 4, 56, 1]; |
|
62 %! t2 = [1993, 8, 21, 4, 56, 1]; |
|
63 %! t3 = [1993, 8, 20, 5, 56, 1]; |
|
64 %! t4 = [1993, 8, 20, 4, 57, 1]; |
|
65 %! t5 = [1993, 8, 20, 4, 56, 14]; |
|
66 %! |
|
67 %! assert((etime (t2, t1) == 86400 && etime (t3, t1) == 3600 |
|
68 %! && etime (t4, t1) == 60 && etime (t5, t1) == 13)); |
|
69 |
|
70 %!error etime (); |
|
71 |
|
72 %!error etime (1, 2, 3); |
|
73 |