Relationship between SciPy and NumPy

前端 未结 8 1798
清酒与你
清酒与你 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:08

    From the SciPy Reference Guide:

    ... all of the Numpy functions have been subsumed into the scipy namespace so that all of those functions are available without additionally importing Numpy.

    The intention is for users not to have to know the distinction between the scipy and numpy namespaces, though apparently you've found an exception.

提交回复
热议问题