我们从Python开源项目中,提取了以下14个代码示例,用于说明如何使用numpy.longcomplex()。
def is_longdouble_finfo_bogus(): info = np.finfo(np.longcomplex) return not np.isfinite(np.log10(info.tiny/info.eps))
def test_loss_of_precision_longcomplex(self): self.check_loss_of_precision(np.longcomplex)