Content deleted Content added
No edit summary |
|||
Line 62:
<source lang="python">
def deBoor(k: int, x: int, t, c, p: int):
"""Evaluates S(x).
---------
k:
x:
t:
c:
p:
"""
d = [c[j + k - p] for j in range(0, p+1)]
|