We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d537876 commit f4e89d6Copy full SHA for f4e89d6
README.md
@@ -13,9 +13,9 @@ Here is an example in 3 dimensions:
13
from interpolation.splines import LinearSpline, CubicSpline
14
a = np.array([0.0,0.0,0.0]) # lower boundaries
15
b = np.array([1.0,1.0,1.0]) # upper boundaries
16
-orders = np.array([50,50,50]) # 10 points along each dimension
+orders = np.array([50,50,50]) # 50 points along each dimension
17
values = np.random.random(orders) # values at each node of the grid
18
-S = np.random.random((10^6,3)) # coordinates at which to evaluate the splines
+S = np.random.random((10**6,3)) # coordinates at which to evaluate the splines
19
20
# multilinear
21
lin = LinearSpline(a,b,orders,values)
0 commit comments