You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add tensor product operation for MeshArrays that supports the following examples:
G(m1, m2, m3, m4, m5) = G1(m1, m2, m3)*G2(m1, m4, m5)
which corresponds to the Einstein summation:
G = einsum('bij,bkl->bijkl', G1, G2)
Here m1...m5 are the meshes. User should be able to specify the dimensions for contraction.
The text was updated successfully, but these errors were encountered:
Add tensor product operation for MeshArrays that supports the following examples:
G(m1, m2, m3, m4, m5) = G1(m1, m2, m3)*G2(m1, m4, m5)
which corresponds to the Einstein summation:
G = einsum('bij,bkl->bijkl', G1, G2)
Here m1...m5 are the meshes. User should be able to specify the dimensions for contraction.
The text was updated successfully, but these errors were encountered: