File: control.tex

package info (click to toggle)
octave-control 2.3.52-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,680 kB
  • sloc: cpp: 5,104; objc: 91; makefile: 52
file content (104 lines) | stat: -rw-r--r-- 3,834 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
\input texinfo   @c -*-texinfo-*-
@c %**start of header
@setfilename control.info
@settitle Octave Control Systems Package
@afourpaper
@set VERSION 2.3.52
@finalout
@c @afourwide
@c %**end of header


@c The following macro is used for the on-line help system, but we don't
@c want lots of `See also: foo, bar, and baz' strings cluttering the
@c printed manual (that information should be in the supporting text for
@c each group of functions and variables).

@macro seealso {args}
@iftex
@vskip 2pt
@end iftex
@ifnottex
@c Texinfo @sp should work but in practice produces ugly results for HTML.
@c A simple blank line produces the correct behavior. 
@c @sp 1

@end ifnottex
@noindent
@strong{See also:} \args\.
@end macro


@c %*** Start of TITLEPAGE
@titlepage
@title control @value{VERSION}
@subtitle Control Systems Package for GNU Octave
@author Lukas F. Reichlin
@page
@vskip 0pt plus 1filll
Copyright @copyright{} 2009-2012, Lukas F. Reichlin @email{lukas.reichlin@@gmail.com}

This manual is generated automatically from the texinfo help strings
of the package's functions.

Permission is granted to make and distribute verbatim copies of
this manual provided the copyright notice and this permission notice
are preserved on all copies.

Permission is granted to copy and distribute modified versions of this
manual under the conditions for verbatim copying, provided that the entire
resulting derived work is distributed under the terms of a permission
notice identical to this one.

Permission is granted to copy and distribute translations of this manual
into another language, under the same conditions as for modified versions.
@page
@chapheading Preface
The @acronym{GNU} Octave control package from version 2 onwards was
developed by Lukas F. Reichlin and is based on the proven open-source
library @acronym{SLICOT}. This new package is intended as a replacement
for control-1.0.11 by A. Scottedward Hodel and his students.
Its main features are:
@itemize
@item Reliable solvers for Lyapunov, Sylvester and algebraic Riccati equations.
@item Pole placement techniques as well as @tex $ H_2 $ @end tex
and @tex $ H_{\infty} $ @end tex
synthesis methods.
@item Frequency-weighted model and controller reduction.
@item Overloaded operators due to the use of classes introduced with Octave 3.2.
@item Support for descriptor state-space models and non-proper transfer functions.
@item Improved @acronym{MATLAB} compatibility.
@end itemize

@sp 5
@subheading Acknowledgments
The author is indebted to several people and institutions who helped
him to achieve his goals. I am particularly grateful to Luca Favatella
who introduced me to Octave development as well as discussed and revised
my early draft code with great patience. My continued support from the
@acronym{FHNW} University of Applied Sciences of Northwestern Switzerland,
where I could work on the control package as a semester project, has also
been important. Furthermore, I thank the @acronym{SLICOT} authors
Peter Benner, Vasile Sima and Andras Varga for their advice.


@sp 5
@subheading Using the help function
Some functions of the control package are listed with a leading @code{@@lti/}.
This is only needed to view the help text of the function, e.g. @w{@code{help norm}}
shows the built-in function while @w{@code{help @@lti/norm}} shows the overloaded
function for @acronym{LTI} systems. Note that there are @acronym{LTI} functions
like @code{pole} that have no built-in equivalent.

When just using the function, the leading @code{@@lti/} must @strong{not} be typed.
Octave selects the right function automatically. So one can type @w{@code{norm (sys, inf)}}
and @w{@code{norm (matrix, inf)}} regardless of the class of the argument.
@end titlepage
@c %*** End of TITLEPAGE

@contents
@c @chapter Function Reference
@include functions.texi

@end
@bye