0% found this document useful (0 votes)
153 views1 page

Deconv M

This document contains the code for a modified deconvolution routine that handles noncausal sequences. The routine takes in the numerator polynomial b, denominator polynomial a, and their supports. It returns the polynomial part p, its support np, the remainder part r, and its support nr. It first performs a regular deconvolution to get p and r, then calculates the supports np and nr based on the supports of b and a.

Uploaded by

Avirup Dasgupta
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
153 views1 page

Deconv M

This document contains the code for a modified deconvolution routine that handles noncausal sequences. The routine takes in the numerator polynomial b, denominator polynomial a, and their supports. It returns the polynomial part p, its support np, the remainder part r, and its support nr. It first performs a regular deconvolution to get p and r, then calculates the supports np and nr based on the supports of b and a.

Uploaded by

Avirup Dasgupta
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
You are on page 1/ 1

function [p,np,r,nr] = deconv_m(b,nb,a,na) % Modified deconvolution routine for noncausal sequences % function [p,np,r,nr] = deconv_m(b,nb,a,na)% % p = polynomial part of support

np1<= n<= np2 % np = [np1, np2] % r = remainder part of support nr1<= n<= nr2 % nr= [nr1, nr2] % b = numerator polynomial of support nb1<= n<= nb2 % nb = [nb1, nb2] % a = denominator polynomial of support na1<= n<= na2 % na = [na1, na2 [p,r]=deconv(b,a); np[0]=nb[0]-na[0]; np[1]=nb[1]-na[1]; a=length(r); nr[1]=nb[1]; nr[0]=nb[1]+(a-1); end

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy