|  |  D.15.30.9 evalJacobianAtBox Procedure from libraryrootisolation.lib(see  rootisolation_lib).
 
Example:Usage:
evalJacobianAtBox(I, B);I ideal, B box
Return:
Jacobian matrix of Iwhere polynomials are evaluated atB
Purpose:
evaluates each polynomial of the Jacobian matrix of Iusing
interval arithmetic
 |  | LIB "rootisolation.lib";
ring R = 0,(x,y),dp;
ideal I = 2x2-xy+2y2-2, 2x2-3xy+3y2-2;
interval J = bounds(-1,1);
evalJacobianAtBox(I, list(J,J));
==> [-5, 5],[-5, 5]
==> [-7, 7],[-9, 9]
==> 
 | 
 
 |