Jacobi-matrix
(func)
| 47 | # return func.Deriv() |
| 48 | |
| 49 | def Grad(func): |
| 50 | """ Jacobi-matrix""" |
| 51 | # now in C++ code |
| 52 | # if "normal vector" in str(func): |
| 53 | # return specialcf.Weingarten(func.dim) |
| 54 | try: |
| 55 | return func.Operator("Grad") |
| 56 | except: |
| 57 | return grad(func).trans |
| 58 | |
| 59 | |
| 60 |