Jacobian function not found
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello to all,
I have to use the "jacobian" function in Matlab. I have the Symbolic toolbox installed, but upon running jacobian(a, b), the prompt tells me :
??? Undefined function or variable 'jacobian'.
What should I do?
Best regards,
Jean
0 commentaires
Réponse acceptée
Wayne King
le 10 Oct 2011
If you enter
>>ver
Do you see an entry for the Symbolic Toolbox?
If you enter:
license('test','symbolic_toolbox')
Do you get a 1 back? You may think you installed it, but perhaps something went wrong.
8 commentaires
Walter Roberson
le 5 Déc 2011
jacobian is a method of the symbolic class, so you have to invoke it with a symbolic argument for it to be located.
For example,
jacobian(sym('x^2+3*x*y-y^3'))
Plus de réponses (1)
Walter Roberson
le 10 Oct 2011
Which version are you using? I trace the function back at least as far as R14
0 commentaires
Voir également
Catégories
En savoir plus sur Introduction to Installation and Licensing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!