Calling MuPAD rank and jacobian
조회 수: 1 (최근 30일)
이전 댓글 표시
I recently learned that it is easy to call the MuPAD version of rank, and it is faster than the other version. My test code includes these lines:
R1=rank(A);
R2=feval(symengine,'linalg::rank',A);
Now I would like to test something similar for the jacobian, but can't figure out how to write it. My test includes these lines, but the second one causes errors.
J1 = jacobian(F1,V1);
J2 = feval(symengine,'linalg::jacobian',F1,V1);
What's the correct syntax for this?
댓글 수: 0
답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!