numpy—np.isnan

np.isnan

numpy.isnan(x, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj])

描述

以元素方式测试NaN,并以布尔数组的形式返回结果

参数

x : array_like
输入数组

out : ndarray, None, or tuple of ndarray and None, optional
A location into which the result is stored. If provided, it must have a shape that the inputs broadcast to. If not provided or None, a freshly-allocated array is returned. A tuple (possible only as a keyword argument) must have length equal to the number of outputs.

where : array_like, optional
At locations where the condition is True, the out array will be set to the ufunc result.
Elsewhere, the out array will retain its original value.

**kwargs
其他关键字参数

返回

y : ndarray or bool
True where x is NaN, false otherwise. This is a scalar if x is a scalar.

官方案例
numpy—np.isnan_第1张图片

你可能感兴趣的:(numpy,isnan,numpy)