numpy.info#
- numpy.info(object=None, maxwidth=76, output=None, toplevel='numpy')[源代码]#
获取数组、函数、类或模块的帮助信息.
- 参数:
备注
当与对象交互使用时,``np.info(obj)`` 等同于在 Python 提示符下的
help(obj)
或 IPython 提示符下的obj?
.示例
>>> np.info(np.polyval) polyval(p, x) Evaluate the polynomial p at x. ...
当使用字符串作为 object 时,可能会得到多个结果.
>>> np.info('fft') *** Found in numpy *** Core FFT routines ... *** Found in numpy.fft *** fft(a, n=None, axis=-1) ... *** Repeat reference found in numpy.fft.fftpack *** *** Total of 3 references found. ***
当参数是一个数组时,会打印出关于该数组的信息.
>>> a = np.array([[1 + 2j, 3, -4], [-5j, 6, 0]], dtype=np.complex64) >>> np.info(a) class: ndarray shape: (2, 3) strides: (24, 8) itemsize: 8 aligned: True contiguous: True fortran: False data pointer: 0x562b6e0d2860 # may vary byteorder: little byteswap: False type: complex64