| python Programming Glossary: dimaConvolution 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  two three dimensional arrays A and B with the dimensions dimA and dimB same for every axis . Now we want to create a third.. Now 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.. x1 y1 z1 b_ x2 y2 z2 My current version is straightforward dimA A.shape 0 dimB B.shape 0 dimC dimA dimB C np.zeros dimC dimC.. 
 |