]> Creatis software - CreaPhase.git/blob - octave_packages/control-2.3.52/@lti/isminimumphase.m
Add a useful package (from Source forge) for octave
[CreaPhase.git] / octave_packages / control-2.3.52 / @lti / isminimumphase.m
1 ## Copyright (C) 2011   Lukas F. Reichlin
2 ##
3 ## This file is part of LTI Syncope.
4 ##
5 ## LTI Syncope is free software: you can redistribute it and/or modify
6 ## it under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation, either version 3 of the License, or
8 ## (at your option) any later version.
9 ##
10 ## LTI Syncope is distributed in the hope that it will be useful,
11 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 ## GNU General Public License for more details.
14 ##
15 ## You should have received a copy of the GNU General Public License
16 ## along with LTI Syncope.  If not, see <http://www.gnu.org/licenses/>.
17
18 ## -*- texinfo -*-
19 ## @deftypefn {Function File} {@var{bool} =} isminimumphase (@var{sys})
20 ## @deftypefnx {Function File} {@var{bool} =} isminimumphase (@var{sys}, @var{tol})
21 ## Determine whether LTI system is minimum phase.
22 ## The zeros must lie in the left complex half-plane.
23 ## The name minimum-phase refers to the fact that such a system has the
24 ## minimum possible phase lag for the given magnitude response |sys(jw)|.
25 ##
26 ## @strong{Inputs}
27 ## @table @var
28 ## @item sys
29 ## LTI system.
30 ## @item tol
31 ## Optional tolerance.  Default value is 0.
32 ## @end table
33 ##
34 ## @strong{Outputs}
35 ## @table @var
36 ## @item bool = 0
37 ## System is not minimum phase.
38 ## @item bool = 1
39 ## System is minimum phase.
40 ## @end table
41 ##
42 ## @example
43 ## @group
44 ##   real (z) < -tol*(1 + abs (z))    continuous-time
45 ##   abs (z) < 1 - tol                discrete-time
46 ## @end group
47 ## @end example
48 ## @end deftypefn
49
50 ## Author: Lukas Reichlin <lukas.reichlin@gmail.com>
51 ## Created: January 2011
52 ## Version: 0.1
53
54 function bool = isminimumphase (sys, tol = 0)
55
56   if (nargin > 2)
57     print_usage ();
58   endif
59
60   z = zero (sys);
61   ct = isct (sys);
62
63   bool = __is_stable__ (z, ct, tol);
64
65 endfunction