Hello
Could you please help me to find out how to calculate the Jacobian matrix of below mentioned function using “IntervalArithmetic.jl” package in Julia.
using IntervalArithmetic, Plots, ForwardDiff
function model(x, p)
x, y, z = x #variables
a, b, c = p #interval parameters
return [ax+y, x+by+z, x+cz]
end
a = (1..2)
b = (2..3)
c = (3..4)
Thank you