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
b=-1
It's currently not possible to construct a SemiclassicalJacobi from b=-1 except to b=1,
SemiclassicalJacobi
b=1
julia> P = SemiclassicalJacobi(2.0, -1/2, -1.0, -1/2); julia> Q = SemiclassicalJacobi(2.0, -1/2, 0.0, -1/2, P); ERROR: Polynomials must be orthonormal Stacktrace: [1] error(s::String) @ Base .\error.jl:35 [2] cholesky_jacobimatrix(W::LazyBandedMatrices.Tridiagonal{…}, Q::SemiclassicalJacobi{…}) @ ClassicalOrthogonalPolynomials C:\Users\danjv\.julia\packages\ClassicalOrthogonalPolynomials\3YYrU\src\choleskyQR.jl:53 [3] semiclassical_jacobimatrix(Q::SemiclassicalJacobi{Float64}, a::Float64, b::Float64, c::Float64) @ SemiclassicalOrthogonalPolynomials C:\Users\danjv\.julia\packages\SemiclassicalOrthogonalPolynomials\GAsGB\src\SemiclassicalOrthogonalPolynomials.jl:194 [4] SemiclassicalJacobi(t::Float64, a::Float64, b::Float64, c::Float64, P::SemiclassicalJacobi{Float64}) @ SemiclassicalOrthogonalPolynomials C:\Users\danjv\.julia\packages\SemiclassicalOrthogonalPolynomials\GAsGB\src\SemiclassicalOrthogonalPolynomials.jl:127 [5] top-level scope @ REPL[30]:1 Some type information was truncated. Use `show(err)` to see complete types.
The call for Q should probably do something like
Q
julia> Q = SemiclassicalJacobi(2.0, -1/2, 0.0, -1/2, SemiclassicalJacobi(P.t, P.a, one(P.b), P.c, P)) SemiclassicalJacobi with weight x^-0.5 * (1-x)^0.0 * (2.0-x)^-0.5 on 0..1
The SemiclassicalJacobi(P.t, P.a, one(P.b), P.c, P) call is efficient
SemiclassicalJacobi(P.t, P.a, one(P.b), P.c, P)
SemiclassicalOrthogonalPolynomials.jl/src/SemiclassicalOrthogonalPolynomials.jl
Lines 174 to 176 in a1e4c3e
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
It's currently not possible to construct a
SemiclassicalJacobi
fromb=-1
except tob=1
,The call for
Q
should probably do something likeThe
SemiclassicalJacobi(P.t, P.a, one(P.b), P.c, P)
call is efficientSemiclassicalOrthogonalPolynomials.jl/src/SemiclassicalOrthogonalPolynomials.jl
Lines 174 to 176 in a1e4c3e
The text was updated successfully, but these errors were encountered: