3

When experimenting with Numpy, I found:

In [1]: numpy.numarray
Out[1]: 'removed'

In [2]: type(numpy.numarray)
Out[2]: str

What is numpy.numarray? What is it's purpose in Numpy? Why does it only say 'removed'?

2
  • Do you know what it did before it was removed? What purpose did it serve? I'm just curious to find out. Commented Sep 21, 2016 at 15:59
  • just check for what you need on github github.com/numpy/numpy Commented Sep 21, 2016 at 17:53

1 Answer 1

3

numarray was a predecessor of numpy. A long time ago, there were several packages (numarray, numeric), which had lots of overlap, and eventually were superceded by numpy.

(Wikipedia has a whole section on numpy history, if you're into this sort of stuff.)

numarray was removed in 1.9. It has probably been replaced by this string, so that attempts to reference it would lead to something legible. In any case, there is nothing useful in this anymore.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.