ListConvolve::depth
ListCorrelate::depth
ListConvolve::depth ListCorrelate::depth
Details
-
- This message is generated when the dimension of the third argument in ListConvolve or ListCorrelate is not the same as the rank of the first argument.
- The first argument in ListConvolve or ListCorrelate is the kernel of the convolution or correlation, and the third argument gives the overhang parameters.
- Off[message] switches off the message; On[message] switches it on. For example: Off[ListConvolve::depth].
Examples
Basic Examples (1)
An error occurs because the third argument gives overhang parameters for two dimensions, while the first argument has only one dimension:
ListConvolve[{k1, k2, k3}, {d1, d2, d3, d4, d5, d6}, {{3, 1}}]This shows a valid specification of overhang parameters in ListConvolve:
ListConvolve[{k1, k2, k3}, {d1, d2, d3, d4, d5, d6}, {3, 1}]