How to calculate Jacobian matrix of a vector function using "IntervalArithmetic.jl" package?

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

There’s an answer in the StackOverflow question you asked:
https://stackoverflow.com/questions/75208555/how-to-find-a-jacobian-matrix-of-a-vector-function-in-julia-using-intervalarith

1 Like