Mercurial > hg > octave-nkf
annotate scripts/polynomial/poly.m @ 11032:c9b0a75b02e8
Make all regexp in Octave compatible with both POSIX and PCRE.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Tue, 28 Sep 2010 09:25:14 -0700 |
parents | 693e22af08ae |
children | 994e2a93a8e2 |
rev | line source |
---|---|
9245 | 1 ## Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2005, 2006, 2007, |
2 ## 2008, 2009 John W. Eaton | |
2313 | 3 ## |
4 ## This file is part of Octave. | |
5 ## | |
6 ## Octave is free software; you can redistribute it and/or modify it | |
7 ## under the terms of the GNU General Public License as published by | |
7016 | 8 ## the Free Software Foundation; either version 3 of the License, or (at |
9 ## your option) any later version. | |
2313 | 10 ## |
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. | |
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/>. | |
1025 | 19 |
3368 | 20 ## -*- texinfo -*- |
10687
a8ce6bdecce5
Improve documentation strings.
Rik <octave@nomad.inbox5.com>
parents:
9245
diff
changeset
|
21 ## @deftypefn {Function File} {} poly (@var{a}) |
a8ce6bdecce5
Improve documentation strings.
Rik <octave@nomad.inbox5.com>
parents:
9245
diff
changeset
|
22 ## @deftypefnx {Function File} {} poly (@var{x}) |
3499 | 23 ## If @var{a} is a square @math{N}-by-@math{N} matrix, @code{poly (@var{a})} |
3368 | 24 ## is the row vector of the coefficients of @code{det (z * eye (N) - a)}, |
10687
a8ce6bdecce5
Improve documentation strings.
Rik <octave@nomad.inbox5.com>
parents:
9245
diff
changeset
|
25 ## the characteristic polynomial of @var{a}. For example, |
a8ce6bdecce5
Improve documentation strings.
Rik <octave@nomad.inbox5.com>
parents:
9245
diff
changeset
|
26 ## the following code finds the eigenvalues of @var{a} which are the roots of |
a8ce6bdecce5
Improve documentation strings.
Rik <octave@nomad.inbox5.com>
parents:
9245
diff
changeset
|
27 ## @code{poly (@var{a})}. |
10821
693e22af08ae
Grammarcheck documentation of m-files
Rik <octave@nomad.inbox5.com>
parents:
10687
diff
changeset
|
28 ## |
6850 | 29 ## @example |
9051
1bf0ce0930be
Grammar check TexInfo in all .m files
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
30 ## @group |
6850 | 31 ## roots(poly(eye(3))) |
10821
693e22af08ae
Grammarcheck documentation of m-files
Rik <octave@nomad.inbox5.com>
parents:
10687
diff
changeset
|
32 ## @result{} 1.00001 + 0.00001i |
693e22af08ae
Grammarcheck documentation of m-files
Rik <octave@nomad.inbox5.com>
parents:
10687
diff
changeset
|
33 ## @result{} 1.00001 - 0.00001i |
693e22af08ae
Grammarcheck documentation of m-files
Rik <octave@nomad.inbox5.com>
parents:
10687
diff
changeset
|
34 ## @result{} 0.99999 + 0.00000i |
9051
1bf0ce0930be
Grammar check TexInfo in all .m files
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
35 ## @end group |
6850 | 36 ## @end example |
37 ## | |
10821
693e22af08ae
Grammarcheck documentation of m-files
Rik <octave@nomad.inbox5.com>
parents:
10687
diff
changeset
|
38 ## In fact, all three eigenvalues are exactly 1 which emphasizes that for |
693e22af08ae
Grammarcheck documentation of m-files
Rik <octave@nomad.inbox5.com>
parents:
10687
diff
changeset
|
39 ## numerical performance the @code{eig} function should be used to compute |
693e22af08ae
Grammarcheck documentation of m-files
Rik <octave@nomad.inbox5.com>
parents:
10687
diff
changeset
|
40 ## eigenvalues. |
693e22af08ae
Grammarcheck documentation of m-files
Rik <octave@nomad.inbox5.com>
parents:
10687
diff
changeset
|
41 ## |
693e22af08ae
Grammarcheck documentation of m-files
Rik <octave@nomad.inbox5.com>
parents:
10687
diff
changeset
|
42 ## If @var{x} is a vector, @code{poly (@var{x})} is a vector of the coefficients |
6850 | 43 ## of the polynomial whose roots are the elements of @var{x}. That is, |
10687
a8ce6bdecce5
Improve documentation strings.
Rik <octave@nomad.inbox5.com>
parents:
9245
diff
changeset
|
44 ## if @var{c} is a polynomial, then the elements of |
6850 | 45 ## @code{@var{d} = roots (poly (@var{c}))} are contained in @var{c}. |
10687
a8ce6bdecce5
Improve documentation strings.
Rik <octave@nomad.inbox5.com>
parents:
9245
diff
changeset
|
46 ## The vectors @var{c} and @var{d} are not identical, however, due to sorting |
6850 | 47 ## and numerical errors. |
48 ## @seealso{eig, roots} | |
3368 | 49 ## @end deftypefn |
787 | 50 |
5428 | 51 ## Author: KH <Kurt.Hornik@wu-wien.ac.at> |
2312 | 52 ## Created: 24 December 1993 |
53 ## Adapted-By: jwe | |
904 | 54 |
2312 | 55 function y = poly (x) |
1025 | 56 |
57 if (nargin != 1) | |
6046 | 58 print_usage (); |
1025 | 59 endif |
787 | 60 |
61 m = min (size (x)); | |
62 n = max (size (x)); | |
63 if (m == 0) | |
64 y = 1; | |
5158 | 65 return; |
787 | 66 elseif (m == 1) |
67 v = x; | |
68 elseif (m == n) | |
69 v = eig (x); | |
70 else | |
6046 | 71 print_usage (); |
787 | 72 endif |
2325 | 73 |
1336 | 74 y = zeros (1, n+1); |
75 y(1) = 1; | |
787 | 76 for j = 1:n; |
77 y(2:(j+1)) = y(2:(j+1)) - v(j) .* y(1:j); | |
78 endfor | |
2325 | 79 |
787 | 80 if (all (all (imag (x) == 0))) |
81 y = real (y); | |
82 endif | |
2325 | 83 |
787 | 84 endfunction |
7411 | 85 |
86 %!assert(all (all (poly ([1, 2, 3]) == [1, -6, 11, -6]))); | |
87 | |
88 %!assert(all (all (abs (poly ([1, 2; 3, 4]) - [1, -5, -2]) < sqrt (eps)))); | |
89 | |
90 %!error poly ([1, 2, 3; 4, 5, 6]); | |
91 | |
92 %!assert(poly ([]),1); | |
93 |