File tree Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -248,12 +248,6 @@ class Learner2D(BaseLearner):
248
248
triangles will be stretched along ``x``, otherwise
249
249
along ``y``.
250
250
251
- Methods
252
- -------
253
- data_combined : dict
254
- Sampled points and values so far including
255
- the unknown interpolated points in `pending_points`.
256
-
257
251
Notes
258
252
-----
259
253
Adapted from an initial implementation by Pauli Virtanen.
@@ -408,13 +402,6 @@ def _data_combined(self):
408
402
values_combined = np .vstack ([values , values_interp ])
409
403
return points_combined , values_combined
410
404
411
- def data_combined (self ):
412
- """Like `data`, however this includes the points in
413
- `pending_points` for which the values are interpolated."""
414
- # Interpolate the unfinished points
415
- points , values = self ._data_combined ()
416
- return {tuple (k ): v for k , v in zip (points , values )}
417
-
418
405
def ip (self ):
419
406
"""Deprecated, use `self.interpolate()`"""
420
407
return self .interpolate (scaled = True )
You can’t perform that action at this time.
0 commit comments