Skip to content

Latest commit

 

History

History
27 lines (14 loc) · 615 Bytes

File metadata and controls

27 lines (14 loc) · 615 Bytes

ListCorrelate

ListCorrelate(kernel-list, tensor-list)

create the correlation of the kernel-list with tensor-list.

Examples

>> ListCorrelate({{u, v}, {w, x}}, {{a,b,c,p}, {d,e,f,q}, {g, h, i,r}})
{{a*u+b*v+d*w+e*x,b*u+c*v+e*w+f*x,c*u+p*v+f*w+q*x},{d*u+e*v+g*w+h*x,e*u+f*v+h*w+i*x,f*u+q*v+i*w+r*x}}

Implementation status

  • ☑ - partially implemented

Github