Skip to content

Commit

Permalink
retranspose #282
Browse files Browse the repository at this point in the history
  • Loading branch information
gdmcbain committed Dec 16, 2019
1 parent a7a129f commit be1e652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skfem/mapping/mapping_isoparametric.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def invDF(self, X, tind=None):
for i in range(self.dim)]
for j in range(self.dim)])
return np.linalg.inv(
jac.transpose(2, 3, 0, 1)).transpose(2, 3, 0, 1)
jac.transpose(2, 3, 0, 1)).transpose(3, 2, 0, 1)

def normals(self, X, tind, find, t2f):
if self.dim == 1:
Expand Down

0 comments on commit be1e652

Please sign in to comment.