Skip to content
New issue

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

This adds methods to compute bivariate Gram matrices. #261

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

MikaelSlevinsky
Copy link
Member

The test shows how to put together the Gram matrix for OPs with respect to $w(x,y) = 1+|x|+|y|-|xy|$ as a sum of four separable weights.

The complexity scales like O(b^2n^2) for the construction of banded-block-banded Gram matrices (with bivariate moments that have b+1 nonzero blocks). The banded structures can be encoded by making a PaddedArray out of a finite number of moments.

Certains parts of the code run into snags from viewing blocks of banded-block-banded matrices. Could be cleaned up if JuliaLinearAlgebra/BlockBandedMatrices.jl#223 and JuliaLinearAlgebra/BandedMatrices.jl#474 are addressed @dlfivefifty.

Bivariate Jacobi matrices can be found and computed elsewhere (e.g. MultivariateOrthogonalPolynomials.jl).

@MikaelSlevinsky
Copy link
Member Author

P.S. I think the banded-block-banded complexity above is better than 2D Clenshaw. Is that O(b^4n^2)?

In 1D, Clenshaw costs O(b^2n), or O(n^3) if b = O(n), so I think in 2D it must scale worse than O(b^2n^2), either O(b^3n^2) or O(b^4n^2).

Copy link

codecov bot commented Mar 31, 2025

Codecov Report

Attention: Patch coverage is 98.16092% with 8 lines in your changes missing coverage. Please review.

Project coverage is 79.80%. Comparing base (2446237) to head (688994c).

Files with missing lines Patch % Lines
src/BivariateGramMatrix.jl 98.15% 8 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##           master     #261      +/-   ##
==========================================
+ Coverage   77.32%   79.80%   +2.48%     
==========================================
  Files          17       18       +1     
  Lines        3206     3640     +434     
==========================================
+ Hits         2479     2905     +426     
- Misses        727      735       +8     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

- remove most instances of μ.blocks in favour of μ[BlockIndex(n, k)] which should exist for any AbstractBlockVector

- have the bivariatemoments constructor return a BlockedVector

- the rationale is that the block-analogue of a zero-padded vector isa BlockedVector{T, <: PaddedVector{T}} rather than a BlockVector

- remove X and Y from BivariateChebyshevGramMatrix. the whole point for it is to be a light type
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant