Skip to content

Commit

Permalink
i'm just super operators
Browse files Browse the repository at this point in the history
  • Loading branch information
seismobassoon committed Aug 24, 2023
1 parent 9154c58 commit 24b0051
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/testOperators.jl
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ end

Coefs[1]=1

iCoefficient = 1
global iCo=1

for i in 1:numOrder
@show denominator=factorial(i)
for j in 1:i+1
iCoefficient += 1
Coefs[iCoefficient]=PascalCoefs[j,i] // denominator
@show iCo += 1
Coefs[iCo]=PascalCoefs[j,i] // denominator
end
end
@show Coefs
Expand Down

0 comments on commit 24b0051

Please sign in to comment.