Output Jacobian function is not matrix

1 view (last 30 days)
Fabrizio Lo Regio
Fabrizio Lo Regio on 9 Nov 2020
Commented: madhan ravi on 9 Nov 2020
Hello to everybody,
I have to use the "jacobian" function in Matlab and the output not seems a matrix. How can i have J like a matrix in the classic form?
X=sym('X',[3 1]);
y=myfunction(X);
J=jacobian(y,X);

Answers (1)

madhan ravi
madhan ravi on 9 Nov 2020
What you have is a SYMBOLIC matrix.
  2 Comments
Walter Roberson
Walter Roberson on 9 Nov 2020
... and you probably want to use matlabFunction() with it.

Sign in to comment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!