Relationship between SciPy and NumPy

前端 未结 8 1816
清酒与你
清酒与你 2020-11-27 09:34

SciPy appears to provide most (but not all [1]) of NumPy\'s functions in its own namespace. In other words, if there\'s a function named numpy.foo, there\'s alm

8条回答
  •  暗喜
    暗喜 (楼主)
    2020-11-27 10:01

    From Wikipedia ( http://en.wikipedia.org/wiki/NumPy#History ):

    The Numeric code was adapted to make it more maintainable and flexible enough to implement the novel features of Numarray. This new project was part of SciPy. To avoid installing a whole package just to get an array object, this new package was separated and called NumPy.

    scipy depends on numpy and imports many numpy functions into its namespace for convenience.

提交回复
热议问题