2313
|
1 ## Copyright (C) 1996 John W. Eaton |
|
2 ## |
|
3 ## This file is part of Octave. |
|
4 ## |
|
5 ## Octave is free software; you can redistribute it and/or modify it |
|
6 ## under the terms of the GNU General Public License as published by |
|
7 ## the Free Software Foundation; either version 2, or (at your option) |
|
8 ## any later version. |
|
9 ## |
|
10 ## Octave is distributed in the hope that it will be useful, but |
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
13 ## General Public License for more details. |
|
14 ## |
|
15 ## You should have received a copy of the GNU General Public License |
|
16 ## along with Octave; see the file COPYING. If not, write to the Free |
|
17 ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA |
|
18 ## 02111-1307, USA. |
904
|
19 |
2311
|
20 ## usage: polyreduce(c) |
|
21 ## |
|
22 ## Reduces a polynomial coefficient vector to a minimum number of terms, |
|
23 ## i.e. it strips off any leading zeros. |
|
24 ## |
|
25 ## SEE ALSO: poly, roots, conv, deconv, residue, filter, polyval, polyvalm, |
|
26 ## polyderiv, polyinteg |
1025
|
27 |
2312
|
28 ## Author: Tony Richardson <amr@mpl.ucsd.edu> |
|
29 ## Created: June 1994 |
|
30 ## Adapted-By: jwe |
561
|
31 |
2312
|
32 function p = polyreduce (p) |
1025
|
33 |
|
34 index = find (p == 0); |
561
|
35 |
1178
|
36 if (length (index) != 0) |
561
|
37 |
1179
|
38 index = find (index == 1:length (index)); |
1178
|
39 |
|
40 if (length (index) != 0) |
561
|
41 |
1178
|
42 if (length (p) > 1) |
|
43 p = p (index (length (index))+1:length (p)); |
|
44 endif |
561
|
45 |
1178
|
46 if (length (p) == 0) |
|
47 p = 0; |
|
48 endif |
|
49 |
|
50 endif |
|
51 |
561
|
52 endif |
1025
|
53 |
561
|
54 endfunction |