Created
May 5, 2019 07:37
-
-
Save singularitti/1bd0ae655b0f00baef516e1388ade170 to your computer and use it in GitHub Desktop.
Jacobian matrix #math #Mathematica
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (* Taken from http://mathworld.wolfram.com/Jacobian.html *) | |
| JacobianMatrix[f_List?VectorQ, x_List] := Outer[D, f, x] /; Equal @@ (Dimensions /@ {f, x}) | |
| JacobianDeterminant[f_List?VectorQ, x_List] := Det[JacobianMatrix[f, x]] /; Equal @@ (Dimensions /@ {f, x}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment