23.12.2012 Views

MATLAB Function Reference Volume 1: A - E - Bad Request

MATLAB Function Reference Volume 1: A - E - Bad Request

MATLAB Function Reference Volume 1: A - E - Bad Request

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

2convn<br />

Purpose N-dimensional convolution<br />

Syntax C = convn(A,B)<br />

C = convn(A,B,'shape')<br />

Description C = convn(A,B) computes the N-dimensional convolution of the arrays A and<br />

B. The size of the result is size(A)+size(B)-1.<br />

See Also conv, conv2<br />

C = convn(A,B,'shape') returns a subsection of the N-dimensional<br />

convolution, as specified by the shape parameter:<br />

'full' Returns the full N-dimensional convolution (default).<br />

'same' Returns the central part of the result that is the same size as A.<br />

'valid' Returns only those parts of the convolution that can be computed<br />

without assuming that the array A is zero-padded. The size of the<br />

result is<br />

max(size(A)-size(B) + 1, 0)<br />

convn<br />

2-335

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!