numjac on a subset of variables

14 views (last 30 days)
Riccardo
Riccardo on 20 Feb 2015
Answered: Vinh Nguyen on 2 May 2017
I want to calculate the numerical Jacobian of my system using numjac.
It works fine with the regular syntax:
[Jac, FAC] = numjac(@(t,y)model(t,y,X,VAR),ttot,ytot',dydt,jac_tol,FAC);
However I don't need the full jacobian, but only the derivatives with respect to some y's. I can calculate the full one then select the needed lines, but it is a waste of computational time. How can I calculate the jacobian only where I need it?

Answers (1)

Vinh Nguyen
Vinh Nguyen on 2 May 2017
I think you can do that by providing the Jacobian Structure. You can set the Jacobian Structure element 0 or 1. 1 for the derivatives respective to your variables you need.

Categories

Find more on Systems of Nonlinear Equations in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!