Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. F = interpolate.Rbf(X,Y,Z,V, function = 'linear')
  2.  
  3. (1300, 691, 122)
  4. (1300, 691, 122)
  5. (1300, 691, 122)
  6. (1300, 691, 122)
  7.  
  8. Traceback (most recent call last):
  9. File "make3d.py", line 180, in <module>
  10. main(sys.argv[1:])
  11. File "make3d.py", line 133, in main
  12. F = interpolate.Rbf(X,Y,Z,V, function = 'linear')
  13. File "/anaconda2/lib/python2.7/site-packages/scipy/interpolate/rbf.py", line 200, in __init__
  14. r = self._call_norm(self.xi, self.xi)
  15. File "/anaconda2/lib/python2.7/site-packages/scipy/interpolate/rbf.py", line 231, in _call_norm
  16. return self.norm(x1, x2)
  17. File "/anaconda2/lib/python2.7/site-packages/scipy/interpolate/rbf.py", line 118, in _euclidean_norm
  18. return np.sqrt(((x1 - x2)**2).sum(axis=0))
  19. MemoryError
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement