Mercurial > hg > octave-lyh
comparison scripts/control/system/is_sample.m @ 4462:3e48e60a1f8b
[project @ 2003-07-12 03:31:41 by jwe]
author | jwe |
---|---|
date | Sat, 12 Jul 2003 03:31:41 +0000 |
parents | 22bd65326ec1 |
children | bdbee5282954 |
comparison
equal
deleted
inserted
replaced
4461:af308ca1a354 | 4462:3e48e60a1f8b |
---|---|
25 ## Author: A. S. Hodel <a.s.hodel@eng.auburn.edu> | 25 ## Author: A. S. Hodel <a.s.hodel@eng.auburn.edu> |
26 ## Created: July 1995 | 26 ## Created: July 1995 |
27 | 27 |
28 function out = is_sample (Ts) | 28 function out = is_sample (Ts) |
29 | 29 |
30 out = (isscalar(Ts) && (Ts == abs(Ts)) && (Ts != 0) ); | 30 out = (isscalar (Ts) && (Ts == abs (Ts)) && (Ts != 0)); |
31 | 31 |
32 endfunction | 32 endfunction |