Mercurial > hg > octave-nkf
annotate scripts/time/etime.m @ 19669:c2031ad6dbe7
Fix octave header includes in audiodevinfo
* audiodevinfo.cc: change includes to use local octave headers
author | Vytautas Jančauskas <unaudio@gmail.com> |
---|---|
date | Wed, 11 Sep 2013 21:32:14 +0300 |
parents | f3d52523cde1 |
children | d63878346099 |
rev | line source |
---|---|
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
13856
diff
changeset
|
1 ## Copyright (C) 1996-2012 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 -*- | |
11469
c776f063fefe
Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents:
9245
diff
changeset
|
20 ## @deftypefn {Function File} {} etime (@var{t2}, @var{t1}) |
c776f063fefe
Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents:
9245
diff
changeset
|
21 ## Return the difference in seconds between two time values returned from |
c776f063fefe
Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents:
9245
diff
changeset
|
22 ## @code{clock} (@math{@var{t2} - @var{t1}}). For example: |
5596 | 23 ## |
24 ## @example | |
9051
1bf0ce0930be
Grammar check TexInfo in all .m files
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
25 ## @group |
5596 | 26 ## t0 = clock (); |
9051
1bf0ce0930be
Grammar check TexInfo in all .m files
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
27 ## # many computations later@dots{} |
5596 | 28 ## elapsed_time = etime (clock (), t0); |
9051
1bf0ce0930be
Grammar check TexInfo in all .m files
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
29 ## @end group |
5596 | 30 ## @end example |
31 ## | |
32 ## @noindent | |
33 ## will set the variable @code{elapsed_time} to the number of seconds since | |
34 ## the variable @code{t0} was set. | |
13856
d490ca8ab1a5
Modernize function implementations and docstrings in scripts/time.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
35 ## @seealso{tic, toc, clock, cputime, addtodate} |
5596 | 36 ## @end deftypefn |
37 | |
38 ## Author: jwe | |
39 | |
11469
c776f063fefe
Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents:
9245
diff
changeset
|
40 function secs = etime (t2, t1) |
5596 | 41 |
42 if (nargin != 2) | |
6046 | 43 print_usage (); |
5596 | 44 endif |
45 | |
11469
c776f063fefe
Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents:
9245
diff
changeset
|
46 [~, s2] = datenum (t2); |
c776f063fefe
Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents:
9245
diff
changeset
|
47 [~, s1] = datenum (t1); |
5596 | 48 |
11469
c776f063fefe
Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents:
9245
diff
changeset
|
49 secs = s2 - s1; |
5596 | 50 |
51 endfunction | |
5660 | 52 |
13856
d490ca8ab1a5
Modernize function implementations and docstrings in scripts/time.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
53 |
14363
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
54 %!assert (etime ([1900,12,31,23,59,59], [1901,1,1,0,0,0]), -1) |
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
55 %!assert (etime ([1900,2,28,23,59,59], [1900,3,1,0,0,0]), -1) |
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
56 %!assert (etime ([2000,2,28,23,59,59], [2000,3,1,0,0,0]), -86401) |
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
57 %!assert (etime ([1996,2,28,23,59,59], [1996,3,1,0,0,0]), -86401) |
5660 | 58 %!test |
13856
d490ca8ab1a5
Modernize function implementations and docstrings in scripts/time.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
59 %! t1 = [1900,12,31,23,59,59; 1900,2,28,23,59,59]; |
d490ca8ab1a5
Modernize function implementations and docstrings in scripts/time.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
60 %! t2 = [1901,1,1,0,0,0; 1900,3,1,0,0,0]; |
14363
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
61 %! assert (etime (t2, t1), [1;1]); |
7411 | 62 |
63 %!test | |
64 %! t1 = [1993, 8, 20, 4, 56, 1]; | |
65 %! t2 = [1993, 8, 21, 4, 56, 1]; | |
66 %! t3 = [1993, 8, 20, 5, 56, 1]; | |
67 %! t4 = [1993, 8, 20, 4, 57, 1]; | |
68 %! t5 = [1993, 8, 20, 4, 56, 14]; | |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
69 %! |
13856
d490ca8ab1a5
Modernize function implementations and docstrings in scripts/time.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
70 %! assert (etime (t2, t1), 86400); |
d490ca8ab1a5
Modernize function implementations and docstrings in scripts/time.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
71 %! assert (etime (t3, t1), 3600); |
d490ca8ab1a5
Modernize function implementations and docstrings in scripts/time.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
72 %! assert (etime (t4, t1), 60); |
d490ca8ab1a5
Modernize function implementations and docstrings in scripts/time.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
73 %! assert (etime (t5, t1), 13); |
7411 | 74 |
13856
d490ca8ab1a5
Modernize function implementations and docstrings in scripts/time.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
75 %% Test input validation |
7411 | 76 %!error etime (); |
13856
d490ca8ab1a5
Modernize function implementations and docstrings in scripts/time.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
77 %!error etime (1); |
7411 | 78 %!error etime (1, 2, 3); |
79 |