Skip to content

Commit f4e89d6

Browse files
authored
Update README.md
1 parent d537876 commit f4e89d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ Here is an example in 3 dimensions:
1313
from interpolation.splines import LinearSpline, CubicSpline
1414
a = np.array([0.0,0.0,0.0]) # lower boundaries
1515
b = np.array([1.0,1.0,1.0]) # upper boundaries
16-
orders = np.array([50,50,50]) # 10 points along each dimension
16+
orders = np.array([50,50,50]) # 50 points along each dimension
1717
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
18+
S = np.random.random((10**6,3)) # coordinates at which to evaluate the splines
1919

2020
# multilinear
2121
lin = LinearSpline(a,b,orders,values)

0 commit comments

Comments
 (0)