Daniel VandenHeuvel

Results 63 issues of Daniel VandenHeuvel

The examples [here](https://github.com/JuliaApproximation/MultivariateOrthogonalPolynomials.jl/blob/master/examples/triangleexamples.jl) fail (below is Lines 1-12 from that file) ```julia julia> using ApproxFun, MultivariateOrthogonalPolynomials, BlockArrays, SpecialFunctions, FillArrays, Plots import ApproxFun: blockbandwidths, Vec, PiecewiseSegment import MultivariateOrthogonalPolynomials: DirichletTriangle S =...

In response to #176, this PR adds an extra check that all the example scripts actually run by simply including them one at a time inside the tests. Currently, these...

I doubt this is specifically a ClassicalOrthogonalPolynomials.jl issue but I can't seem to find what types are actually leading to the error because my debugger keeps crashing trying to step...

```julia julia> using ClassicalOrthogonalPolynomials julia> P = Jacobi(2.0, 0.5); Q = Jacobi(3.0, 0.5); julia> P \ Q; # works fine julia> Normalized(P) \ Q; # works fine julia> P \...

Expressions like `1jacobimatrix(P)^2` seem to never complete. Not sure if it's because of something in this package or not - tried getting a specific matrix using just `LazyArrays` or `LazyBandedMatrices`...

Noticed accidentally that the code ```julia julia> using ClassicalOrthogonalPolynomials julia> U = ChebyshevU(); julia> U \ diff(U) ``` never finishes. Ctrl+Cing this gives ```julia julia> U \ diff(U) ERROR: InterruptException:...

Now that the package is a stable state, it would be a good idea to do a performance audit and track the performance of the package over each version. This...

documentation
help wanted

Inspired by https://github.com/jonocarroll/TriangulArt.jl/issues/12, `jump_and_march` is a pretty bad name. It doesn't really mean anything to anyone who doesn't already know the name of this specific algorithm. To make it more...

The image here https://juliageometry.github.io/DelaunayTriangulation.jl/stable/tutorials/curve_bounded/#A-Complicated-Multiply-Connected-Disjoint-Domain got all messed up somehow. Probably just changed the indexing by accident somewhere when plotting the lines.