1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<TITLE>CONV Convolution Function
</TITLE>
</HEAD>
<BODY>
<H2>CONV Convolution Function
</H2>
<P>
Section: <A HREF=sec_signal.html> Signal Processing Functions </A>
<H3>Usage</H3>
The <code>conv</code> function performs a one-dimensional convolution of two
vector arguments. The syntax for its use is
<PRE>
z = conv(x,y)
</PRE>
<P>
where <code>x</code> and <code>y</code> are vectors. The output is of length <code>nx + ny -1</code>.
The <code>conv</code> function calls <code>conv2</code> to do the calculation. See its
help for more details.
</BODY>
</HTML>
|