Is there a way to interpolate a vector-valued function using NumPy/SciPy?
There are plenty of offerings that work on scalar-valued functions, and I guess I can use one of those to estimate each component of the vector separately, but is there a way to do it more efficiently?
To elaborate, I have a function f(x) = V
, where x
is scalar and V
is a vector. I also have a collection of xs
and their corresponding Vs
. I would like to use it to interpolate and estimate V
for an arbitrary x
.