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.
2 parents 2c8ea3b + 7301910 commit 165b69aCopy full SHA for 165b69a
interpolation/splines/multilinear.py
@@ -74,9 +74,6 @@ def grid(self):
74
75
def set_values(self,values):
76
values = values.reshape(self.orders)
77
- print("Setting")
78
- print(self.orders)
79
- print(values.shape)
80
self.values = numpy.ascontiguousarray(values,dtype=self.dtype)
81
82
@@ -158,11 +155,7 @@ def grid(self):
158
155
def set_values(self,mvalues):
159
156
160
157
n_x = mvalues.shape[-1]
161
- print(mvalues.shape)
162
163
- print(n_x)
164
new_orders = list(self.orders) + [n_x]
165
- print(new_orders)
166
mvalues = mvalues.reshape( new_orders)
167
self.mvalues = numpy.ascontiguousarray(mvalues,dtype=self.dtype)
168
0 commit comments