You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia> x =Fun(identity)
Fun{UltrasphericalSpace{0},Float64}([0.0,1.0],UltrasphericalSpace{0}(Interval{Float64}(-1.0,1.0)))
julia> x[1.0:0.1:5.0]
ERROR: stack overflow
If you evaluate the FloatRange as an array before ( [1.:.1:5.]), then there's no problem.
This stack trace I wasn't able to reproduce may help
julia>vec(yn)[1][3:.01:4]
ERROR: stack overflow
in abs at operators.jl:359in clenshaw at /Users/goretkin/.julia/v0.3/ApproxFun/src/LinearAlgebra/clenshaw.jl:12in clenshaw at /Users/goretkin/.julia/v0.3/ApproxFun/src/LinearAlgebra/clenshaw.jl:15 (repeats 52398 times)
in getindex at /Users/goretkin/.julia/v0.3/ApproxFun/src/Fun/Fun.jl:76
The text was updated successfully, but these errors were encountered:
currently gives a stack overflow
If you evaluate the
FloatRange
as an array before ([1.:.1:5.]
), then there's no problem.This stack trace I wasn't able to reproduce may help
The text was updated successfully, but these errors were encountered: