-
```julia
julia> @time SemiclassicalJacobi(1.0, 1/2, 1.0, 1/2)
284.716841 seconds (218.66 k allocations: 4.023 GiB, 0.34% gc time)
SemiclassicalJacobi with weight x^0.5 * (1-x)^1.0 * (1.0-x)^0.5 on …
-
### Is this a new feature, an improvement, or a change to existing functionality?
New Feature
### How would you describe the priority of this feature request
Low (would be nice)
### Please provide…
-
The power series used for small arguments in `eval_legendre` performs poorly for even `n` particularly as `n` becomes large. In this case, using the recurrence directly appears to be better. Althoug…
-
Depends on
- [x] #13
## Definition of a Two Body System
Two masses $m_1$ and $m_2$.
We use Jacobi coordinates, $\vec R=\frac{m_1 \vec x_1 + m_2 \vec x_2}{m_1 + m_2}$, $\vec r = \vec x_1 - \vec x…
-
In constructing `jacobi.c` and `gauss_seidel.c` it seems prudent to call functions constructed in earlier parts of the homework. In the functions that return only by reference we used a variable `out…
-
Could we claim that two WeightedBasis are equal iff both the weights and the basis are equal?
```julia
==(A::WeightedBasis, B::WeightedBasis) = A.args == B.args
```
If so, we can omit this line in…
-
For the Jacobi method to converge, we must guarantee strict diagonal dominance of the input matrix. As mentioned in the problem statement, Gauss-Seidel only requires diagonal dominance. Should we reje…
-
This is building on Ubuntu 18.04 with g++ 7.3.0:
```
kernel/DG/Jacobi.h:152:26: error: ‘vector’ is not a member of ‘std’
std::vector sortVector(result.Points.size());
```
…
-
I'm always confused which points to use for which transform, especially with the SphericalHarmonic/TriangleHarmonics case. I think an examples folder would help here.
If I figure out TriangleHarmon…
-
Hi,
I have some questions about solving the generalized eigenvalue problem using PRIMME.
I am solving for the largest magnitude eigenpair of `Ax = λBx`, using the massMatrixMatvec parameter in PRI…