-
AbstractInterpolation
is not a subtype ofAbstractVector
anymore. This was needed for previous versions of ModelingToolkit.jl to represent splines as vectors. -
Indexing overloads for
AbstractInterpolation
and the type parameter associated with it are removed. For example -A
is an interpolation object:- Doing
A[i]
will error. UseA.u[i]
. size(A)
will error. Usesize(A.u)
orsize(A.t)
.
- Doing
-
Removed deprecated bindings for
ZeroSpline
which is the same asConstantInterpolation
.