We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6efd65 commit a0008dbCopy full SHA for a0008db
Project.toml
@@ -1,6 +1,6 @@
1
name = "ApproxFunFourier"
2
uuid = "59844689-9c9d-51bf-9583-5b794ec66d30"
3
-version = "0.3.25"
+version = "0.3.26"
4
5
[deps]
6
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
test/runtests.jl
@@ -572,6 +572,14 @@ end
572
@test L[1,1] == 0
573
end
574
575
+@testset "tensor product of Fourier spaces, issue ApproxFun.jl#929" begin
576
+ f = Fun(Fourier(), [0; 0; 1])
577
+ g = Fun(Fourier(), [0; 0; 0; 0; 0; 1])
578
+ h = f ⊗ g
579
+ @test h(π/3, π/2) ≈ f(π/3) * g(π/2)
580
+ @test h(π/4, π/5) ≈ f(π/4) * g(π/5)
581
+end
582
+
583
@testset "Piecewise + Constant" begin
584
Γ=Circle() ∪ Circle(0.0,0.4)
585
o=ones(Γ)
0 commit comments