comparison scripts/polynomial/deconv.m @ 2325:b5568c31ee2c

[project @ 1996-07-15 22:20:21 by jwe]
author jwe
date Mon, 15 Jul 1996 22:20:21 +0000
parents 5ca126254d15
children 2b5c27299cde
comparison
equal deleted inserted replaced
2324:fdc6e2f81333 2325:b5568c31ee2c
19 19
20 ## usage: deconv (y, a) 20 ## usage: deconv (y, a)
21 ## 21 ##
22 ## Deconvolve two vectors. 22 ## Deconvolve two vectors.
23 ## 23 ##
24 ## [b, r] = deconv (y, a) solves for b and r such that 24 ## [b, r] = deconv (y, a) solves for b and r such that
25 ## y = conv(a,b) + r 25 ## y = conv(a,b) + r
26 ## 26 ##
27 ## If y and a are polynomial coefficient vectors, b will contain the 27 ## If y and a are polynomial coefficient vectors, b will contain the
28 ## coefficients of the polynomial quotient and r will be a remander 28 ## coefficients of the polynomial quotient and r will be a remander
29 ## polynomial of lowest order. 29 ## polynomial of lowest order.
30 ## 30 ##
31 ## SEE ALSO: conv, poly, roots, residue, polyval, polyderiv, 31 ## SEE ALSO: conv, poly, roots, residue, polyval, polyderiv,
32 ## polyinteg 32 ## polyinteg
33 33
34 ## Author: Tony Richardson <amr@mpl.ucsd.edu> 34 ## Author: Tony Richardson <amr@mpl.ucsd.edu>
35 ## Created: June 1994 35 ## Created: June 1994
36 ## Adapted-By: jwe 36 ## Adapted-By: jwe
37 37