home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / scripts / polynomial / residue.m < prev    next >
Text File  |  1996-09-28  |  8KB  |  304 lines

  1. # Copyright (C) 1995 John W. Eaton
  2. # This file is part of Octave.
  3. # Octave is free software; you can redistribute it and/or modify it
  4. # under the terms of the GNU General Public License as published by the
  5. # Free Software Foundation; either version 2, or (at your option) any
  6. # later version.
  7. # Octave is distributed in the hope that it will be useful, but WITHOUT
  8. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  9. # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  10. # for more details.
  11. # You should have received a copy of the GNU General Public License
  12. # along with Octave; see the file COPYING.  If not, write to the Free
  13. # Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  14.  
  15. function [r, p, k, e] = residue (b, a, toler)
  16.  
  17. # usage: [r, p, k, e] = residue (b, a)
  18. #
  19. # If b and a are vectors of polynomial coefficients, then residue
  20. # calculates the partial fraction expansion corresponding to the
  21. # ratio of the two polynomials. The vector r contains the residue
  22. # terms, p contains the pole values, k contains the coefficients of
  23. # a direct polynomial term (if it exists) and e is a vector containing
  24. # the powers of the denominators in the partial fraction terms.
  25. # Assuming b and a represent polynomials P(s) and Q(s) we have:
  26. #
  27. #  P(s)    M       r(m)         N
  28. #  ---- =  #  -------------  +  # k(n)*s^(N-n)
  29. #  Q(s)   m=1 (s-p(m))^e(m)    n=1
  30. #
  31. # (# represents summation) where M is the number of poles (the length of
  32. # the r, p, and e vectors) and N is the length of the k vector.
  33. #
  34. # [r p k e] = residue(b,a,tol)
  35. #
  36. # This form of the function call may be used to set a tolerance value.
  37. # The default value is 0.001. The tolerance value is used to determine
  38. # whether poles with small imaginary components are declared real. It is
  39. # also used to determine if two poles are distinct. If the ratio of the
  40. # imaginary part of a pole to the real part is less than tol, the
  41. # imaginary part is discarded. If two poles are farther apart than tol
  42. # they are distinct.
  43. #
  44. # Example:
  45. #  b = [1,  1, 1];
  46. #  a = [1, -5, 8, -4];
  47. #
  48. #  [r, p, k, e] = residue (b, a)
  49. #
  50. #  returns
  51. #
  52. #  r = [-2, 7, 3]; p = [2, 2, 1]; k = []; e = [1, 2, 1];
  53. #
  54. #  which implies the following partial fraction expansion
  55. #
  56. #        s^2 + s + 1         -2       7        3
  57. #    ------------------- = ----- + ------- + -----
  58. #    s^3 - 5s^2 + 8s - 4   (s-2)   (s-2)^2   (s-1)
  59. #
  60. # SEE ALSO: poly, roots, conv, deconv, polyval, polyderiv, polyinteg
  61.  
  62. # Written by Tony Richardson (amr@mpl.ucsd.edu) June 1994.
  63.  
  64. # Here's the method used to find the residues.
  65. # The partial fraction expansion can be written as:
  66. #
  67. #
  68. #   P(s)    D   M(k)      A(k,m)
  69. #   ---- =  #    #    -------------
  70. #   Q(s)   k=1  m=1   (s - pr(k))^m
  71. #
  72. # (# is used to represent a summation) where D is the number of
  73. # distinct roots, pr(k) is the kth distinct root, M(k) is the
  74. # multiplicity of the root, and A(k,m) is the residue cooresponding
  75. # to the kth distinct root with multiplicity m.  For example,
  76. #
  77. #        s^2            A(1,1)   A(2,1)    A(2,2)
  78. # ------------------- = ------ + ------ + -------
  79. # s^3 + 4s^2 + 5s + 2    (s+2)    (s+1)   (s+1)^2
  80. #
  81. # In this case there are two distinct roots (D=2 and pr = [-2 -1]),
  82. # the first root has multiplicity one and the second multiplicity
  83. # two (M = [1 2]) The residues are actually stored in vector format as
  84. # r = [ A(1,1) A(2,1) A(2,2) ].
  85. #
  86. # We then multiply both sides by Q(s).  Continuing the example:
  87. #
  88. # s^2 = r(1)*(s+1)^2 + r(2)*(s+1)*(s+2) + r(3)*(s+2)
  89. #
  90. # or
  91. #
  92. # s^2 = r(1)*(s^2+2s+1) + r(2)*(s^2+3s+2) +r(3)*(s+2)
  93. #
  94. # The coefficients of the polynomials on the right are stored in a row
  95. # vector called rhs, while the coefficients of the polynomial on the
  96. # left is stored in a row vector called lhs.  If the multiplicity of
  97. # any root is greater than one we'll also need derivatives of this
  98. # equation of order up to the maximum multiplicity minus one.  The
  99. # derivative coefficients are stored in successive rows of lhs and
  100. # rhs.
  101. #
  102. # For our example lhs and rhs would be:
  103. #
  104. #       | 1 0 0 |
  105. # lhs = |       |
  106. #       | 0 2 0 |
  107. #
  108. #       | 1 2 1 1 3 2 0 1 2 |
  109. # rhs = |                   |
  110. #       | 0 2 2 0 2 3 0 0 1 |
  111. #
  112. # We then form a vector B and a matrix A obtained by evaluating the
  113. # polynomials in lhs and rhs at the pole values. If a pole has a
  114. # multiplicity greater than one we also evaluate the derivative
  115. # polynomials (successive rows) at the pole value.
  116. #
  117. # For our example we would have
  118. #
  119. # | 4|   | 1 0 0 |   | r(1) |
  120. # | 1| = | 0 0 1 | * | r(2) |
  121. # |-2|   | 0 1 1 |   | r(3) |
  122. #
  123. # We then solve for the residues using matrix division.
  124.  
  125.   if (nargin < 2 || nargin > 3)
  126.     usage ("residue (b, a [, toler])");
  127.   endif
  128.  
  129.   if (nargin == 2)
  130.     toler = .001;
  131.   endif
  132.  
  133. # Make sure both polynomials are in reduced form.
  134.  
  135.   a = polyreduce (a);
  136.   b = polyreduce (b);
  137.  
  138.   b = b / a(1);
  139.   a = a / a(1);
  140.  
  141.   la = length (a);
  142.   lb = length (b);
  143.  
  144. # Handle special cases here.
  145.  
  146.   if (la == 0 || lb == 0)
  147.     k = r = p = e = [];
  148.     return;
  149.   elseif (la == 1)
  150.     k = b / a;
  151.     r = p = e = [];
  152.     return;
  153.   endif
  154.  
  155. # Find the poles.
  156.  
  157.   p = roots (a);
  158.   lp = length (p);
  159.  
  160. # Determine if the poles are (effectively) real.
  161.  
  162.   index = find (abs (imag (p) ./ real (p)) < toler);
  163.   if (length (index) != 0)
  164.     p (index) = real (p (index));
  165.   endif
  166.  
  167. # Find the direct term if there is one.
  168.  
  169.   if (lb >= la)
  170. # Also returns the reduced numerator.
  171.     [k, b] = deconv (b, a);
  172.     lb = length (b);
  173.   else
  174.     k = [];
  175.   endif
  176.  
  177.   if (lp == 1)
  178.     r = polyval (b, p);
  179.     e = 1;
  180.     return;
  181.   endif
  182.  
  183.  
  184. # We need to determine the number and multiplicity of the roots.
  185. #
  186. # D  is the number of distinct roots.
  187. # M  is a vector of length D containing the multiplicity of each root.
  188. # pr is a vector of length D containing only the distinct roots.
  189. # e  is a vector of length lp which indicates the power in the partial
  190. #    fraction expansion of each term in p.
  191.  
  192. # Set initial values.  We'll remove elements from pr as we find
  193. # multiplicities.  We'll shorten M afterwards.
  194.  
  195.   e = ones (lp, 1);
  196.   M = zeros (lp, 1);
  197.   pr = p;
  198.   D = 1;
  199.   M(1) = 1;
  200.  
  201.   old_p_index = 1;
  202.   new_p_index = 2;
  203.   M_index = 1;
  204.   pr_index = 2;
  205.  
  206.   while (new_p_index <= lp)
  207.     if (abs (p (new_p_index) - p (old_p_index)) < toler)
  208. # We've found a multiple pole.
  209.       M (M_index) = M (M_index) + 1;
  210.       e (new_p_index) = e (new_p_index-1) + 1;
  211. # Remove the pole from pr.
  212.       pr (pr_index) = [];
  213.     else
  214. # It's a different pole.
  215.       D++;
  216.       M_index++;
  217.       M (M_index) = 1;
  218.       old_p_index = new_p_index;
  219.       pr_index++;
  220.     endif
  221.     new_p_index++;
  222.   endwhile
  223.  
  224. # Shorten M to it's proper length
  225.  
  226.   M = M (1:D);
  227.  
  228. # Now set up the polynomial matrices.
  229.  
  230.   MM = max(M);
  231.  
  232. # Left hand side polynomial
  233.  
  234.   lhs = zeros (MM, lb);
  235.   rhs = zeros (MM, lp*lp);
  236.   lhs (1, :) = b;
  237.   rhi = 1;
  238.   dpi = 1;
  239.   mpi = 1;
  240.   while (dpi <= D)
  241.     for ind = 1:M(dpi)
  242.       if (mpi > 1 && (mpi+ind) <= lp)
  243.         cp = [p(1:mpi-1); p(mpi+ind:lp)];
  244.       elseif (mpi == 1)
  245.         cp = p (mpi+ind:lp);
  246.       else
  247.         cp = p (1:mpi-1);
  248.       endif
  249.       rhs (1, rhi:rhi+lp-1) = prepad (poly (cp), lp);
  250.       rhi = rhi + lp;
  251.     endfor
  252.     mpi = mpi + M (dpi);
  253.     dpi++;
  254.   endwhile
  255.   if (MM > 1)
  256.     for index = 2:MM
  257.       lhs (index, :) = prepad (polyderiv (lhs (index-1, :)), lb);
  258.       ind = 1;
  259.       for rhi = 1:lp
  260.         cp = rhs (index-1, ind:ind+lp-1);
  261.         rhs (index, ind:ind+lp-1) = prepad (polyderiv (cp), lp);
  262.         ind = ind + lp;
  263.       endfor
  264.     endfor
  265.   endif
  266.  
  267. # Now lhs contains the numerator polynomial and as many derivatives as
  268. # are required.  rhs is a matrix of polynomials, the first row
  269. # contains the corresponding polynomial for each residue and
  270. # successive rows are derivatives.
  271.  
  272. # Now we need to evaluate the first row of lhs and rhs at each
  273. # distinct pole value.  If there are multiple poles we will also need
  274. # to evaluate the derivatives at the pole value also.
  275.  
  276.   B = zeros (lp, 1);
  277.   A = zeros (lp, lp);
  278.  
  279.   dpi = 1;
  280.   row = 1;
  281.   while (dpi <= D)
  282.     for mi = 1:M(dpi)
  283.       B (row) = polyval (lhs (mi, :), pr (dpi));
  284.       ci = 1;
  285.       for col = 1:lp
  286.         cp = rhs (mi, ci:ci+lp-1);
  287.         A (row, col) = polyval (cp, pr(dpi));
  288.         ci = ci + lp;
  289.       endfor
  290.       row++;
  291.     endfor
  292.     dpi++;
  293.   endwhile
  294.  
  295. # Solve for the residues.
  296.  
  297.   r = A \ B;
  298.  
  299. endfunction
  300.