7017
|
1 ## Copyright (C) 1996, 2000, 2002, 2003, 2004, 2005, 2007 |
|
2 ## Auburn University. All rights reserved. |
3431
|
3 ## |
|
4 ## This file is part of Octave. |
|
5 ## |
|
6 ## Octave is free software; you can redistribute it and/or modify it |
7016
|
7 ## under the terms of the GNU General Public License as published by |
|
8 ## the Free Software Foundation; either version 3 of the License, or (at |
|
9 ## your option) any later version. |
3431
|
10 ## |
7016
|
11 ## Octave is distributed in the hope that it will be useful, but |
|
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
14 ## General Public License for more details. |
3431
|
15 ## |
|
16 ## You should have received a copy of the GNU General Public License |
7016
|
17 ## along with Octave; see the file COPYING. If not, see |
|
18 ## <http://www.gnu.org/licenses/>. |
3431
|
19 |
|
20 ## -*- texinfo -*- |
3502
|
21 ## @deftypefn {Function File} {} is_sample (@var{ts}) |
|
22 ## Return true if @var{ts} is a valid sampling time |
5016
|
23 ## (real, scalar, > 0). |
3431
|
24 ## @end deftypefn |
|
25 |
|
26 ## Author: A. S. Hodel <a.s.hodel@eng.auburn.edu> |
|
27 ## Created: July 1995 |
|
28 |
|
29 function out = is_sample (Ts) |
|
30 |
7125
|
31 if (nargin != 1) |
|
32 print_usage (); |
|
33 endif |
|
34 |
4462
|
35 out = (isscalar (Ts) && (Ts == abs (Ts)) && (Ts != 0)); |
3431
|
36 |
|
37 endfunction |