We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Vector{Array}
t = Float64[0, 1, 2] y = [i*ones(2) for i in 0:2] interp = LinearInterpolation(y, t) interp(1.0) # errors interp(1.001) # works
The error that I see is: ERROR: MethodError: no method matching isnan(::Vector{Float64})
ERROR: MethodError: no method matching isnan(::Vector{Float64})
It seems like the argument to interp may not be equal to any entry in t.
interp
t
The text was updated successfully, but these errors were encountered:
@GlenHertz this might've been introduced by your change?
Sorry, something went wrong.
This works.. @ChrisRackauckas can we close this?
No branches or pull requests
The error that I see is:
ERROR: MethodError: no method matching isnan(::Vector{Float64})
It seems like the argument to
interp
may not be equal to any entry int
.The text was updated successfully, but these errors were encountered: