conv

Convolution and polynomial multiplication.

📝 Syntax

  • C = conv(u, v)

  • C = conv(u, v, shape)

📥 Input argument

  • u - input vectors, specified as either row or column vectors.

  • v - input vectors, specified as either row or column vectors.

  • shape - subsection of convolution: 'full' (default: full 2-D convolution), 'same' (central part of the convolution) or 'valid' (parts of the convolution that are computed without zero-padded edges).

📤 Output argument

  • C - convolution, returned as a vector or matrix.

📄 Description

conv returns the convolution of vectors u andv.

💡 Example

🔗 See also

conv.

🕔 History

Version
📄 Description

1.0.0

initial version

Last updated

Was this helpful?