Skip to content

Commit 50f1660

Browse files
committed
Add explanation of lexigraphical order
1 parent 7fa9595 commit 50f1660

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/PaduaTransform.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11

22
# lex indicates if its lexigraphical (i.e., x, y) or reverse (y, x)
3+
# If in lexigraphical order the coefficient vector's entries
4+
# corrrespond to the following basis polynomials
5+
# [T0(x) * T0(y), T1(x) * T0(y), T0(x) * T1(y), T2(x) * T0(y), T1(x) * T1(y), T0(x) * T2(y), ...]
6+
# else if not in lexigraphical order
7+
# [T0(x) * T0(y), T0(x) * T1(y), T1(x) * T0(y), T0(x) * T2(y), T1(x) * T1(y), T2(x) * T0(y), ...]
38
"""
49
Pre-plan an Inverse Padua Transform.
510
"""

0 commit comments

Comments
 (0)