| python Programming Glossary: dimbConvolution of two three dimensional arrays with padding on one side too slow http://stackoverflow.com/questions/14786920/convolution-of-two-three-dimensional-arrays-with-padding-on-one-side-too-slow  dimensional arrays A and B with the dimensions dimA and dimB same for every axis . Now we want to create a third array C.. we want to create a third array C with the dimensions dimA dimB for every axis. The entries of C are computed as c_ x1 x2 y1.. y2 z2 My current version is straightforward dimA A.shape 0 dimB B.shape 0 dimC dimA dimB C np.zeros dimC dimC dimC for x1 in.. 
 |