We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65c6916 commit fbbded3Copy full SHA for fbbded3
1 file changed
remez/remez.py
@@ -12,7 +12,7 @@
12
import numpy as np
13
14
15
-def _vandermonde(xs, degree):
+def _vandermonde(xs, degree):
16
# Returns matrix of shape (len(xs), degree+1) for powers 0..degree.
17
xs = np.asarray(xs)
18
return np.vander(xs, N=degree + 1, increasing=True) # columns x^0, x^1, ...
0 commit comments