Jacobian function not found
3 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Wayne King
2011 年 10 月 10 日
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 件のコメント
Walter Roberson
2011 年 12 月 5 日
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'))
その他の回答 (1 件)
Walter Roberson
2011 年 10 月 10 日
Which version are you using? I trace the function back at least as far as R14
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Introduction to Installation and Licensing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!