Company Events Academic NI Developer Zone Support Solutions Products & Services Contact NI MyNI

deconv (MathScript Function) (Windows, Not in Base Package)

LabVIEW 8.5 Help
August 2007

NI Part Number:
371361D-01

»View Product Info

Member of the filter implementation and the polynomials classes.

Syntax

[c, d] = deconv(a, b)

Description

Computes the deconvolution of the input vectors.

Details

Examples

Inputs

Name Description
a Specifies a vector.
b Specifies a vector.

Outputs

Name Description
c Returns the quotient of a and b. c is a vector.
d Returns the remainder of a and b. d is a vector.

Details

LabVIEW computes the deconvolution using the following equation: a = conv(b, c)+d. To generate c and d, LabVIEW performs polynomial division of a and b.

Examples

A = [1, 2, 3, 4];
B = [1, 1];
[C, D] = deconv(A, B)
E = A-conv(B, C)-D

Related Topics

conv
conv2
residue


Resources


 

Your Feedback! poor Poor  |  Excellent excellent   Yes No
 Document Quality? 
 Answered Your Question? 
Add Comments 1 2 3 4 5 submit