Skip to content

Commit

Permalink
small mod to adi routines
Browse files Browse the repository at this point in the history
  • Loading branch information
ioannisPApapadopoulos committed Aug 11, 2023
1 parent 35ed20a commit f1fbe66
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,9 @@ version = "0.7.0"

[[deps.SemiclassicalOrthogonalPolynomials]]
deps = ["ArrayLayouts", "BandedMatrices", "ClassicalOrthogonalPolynomials", "ContinuumArrays", "FillArrays", "HypergeometricFunctions", "InfiniteArrays", "InfiniteLinearAlgebra", "LazyArrays", "LinearAlgebra", "QuasiArrays", "SpecialFunctions"]
path = "C:\\Users\\john.papad\\.julia\\dev\\SemiclassicalOrthogonalPolynomials"
git-tree-sha1 = "9cbd7a57e5e71533ac88f23c92b0b904fe385ab8"
repo-rev = "master"
repo-url = "https://github.com/TSGut/SemiclassicalOrthogonalPolynomials.jl.git"
uuid = "291c01f3-23f6-4eb6-aeb0-063a639b53f2"
version = "0.5.0"

Expand Down
2 changes: 1 addition & 1 deletion src/finitezernike.jl
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ end
function list_2_modaltrav(Z::FiniteZernikeBasis{T}, u::AbstractArray) where T
N, points = Z.N, Z.points
K = length(points) - 1
U = [zeros(T, N ÷ K, 2N-1) for i in 1:K]
U = [zeros(T, N ÷ 2, 2N-1) for i in 1:K]
Ns, _, _ = _getMs_ms_js(N)
for k in 1:K
for i in 1:lastindex(Ns)
Expand Down

0 comments on commit f1fbe66

Please sign in to comment.