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 c9327d3 commit a1d97aeCopy full SHA for a1d97ae
test/fftBigFloattests.jl
@@ -24,7 +24,7 @@ end
24
cc = cis.(c)
25
@test norm(dct(cc)-dct(map(Complex{Float64},cc)),Inf) < 10eps()
26
27
- c = rand(Complex{BigFloat}, 100)
+ c = big.(rand(100)) + im*big.(rand(100))
28
@test norm(dct(c)-dct(map(ComplexF64,c)),Inf) < 10eps()
29
@test norm(idct(c)-idct(map(ComplexF64,c)),Inf) < 10eps()
30
@test norm(idct(dct(c))-c,Inf) < 1000eps(BigFloat)
0 commit comments