Skip to content

Commit 050aded

Browse files
rename ZY_ to yz_
1 parent 69fa6b5 commit 050aded

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/sphericalisometries.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ f = (x, y, z) -> x^2+y^4+x^2*y*z^3-x*y*z^2
3030
F = f.(x, y, z)
3131
V = PA*F
3232
U = threshold!(P\V, 100eps())
33-
FastTransforms.execute_sph_ZY_axis_exchange!(J, U)
33+
FastTransforms.execute_sph_yz_axis_exchange!(J, U)
3434
FR = f.(x, -z, -y)
3535
VR = PA*FR
3636
UR = threshold!(P\VR, 100eps())

src/libfasttransforms.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -779,9 +779,9 @@ function execute_sph_orthogonal_transformation!(p::FTPlan{Float64, 2, SPHERICALI
779779
return x
780780
end
781781

782-
function execute_sph_ZY_axis_exchange!(p::FTPlan{Float64, 2, SPHERICALISOMETRY}, x::Matrix{Float64})
782+
function execute_sph_yz_axis_exchange!(p::FTPlan{Float64, 2, SPHERICALISOMETRY}, x::Matrix{Float64})
783783
checksize(p, x)
784-
ccall((:ft_execute_sph_ZY_axis_exchange, libfasttransforms), Cvoid, (Ptr{ft_plan_struct}, Ptr{Float64}, Cint, Cint), p, x, size(x, 1), size(x, 2))
784+
ccall((:ft_execute_sph_yz_axis_exchange, libfasttransforms), Cvoid, (Ptr{ft_plan_struct}, Ptr{Float64}, Cint, Cint), p, x, size(x, 1), size(x, 2))
785785
return x
786786
end
787787

0 commit comments

Comments
 (0)