Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.1 - 日本語

Change language to:
English - Français - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilabヘルプ >> Elementary Functions > Floating point > isinf

isinf

tests for infinite elements

Syntax

r = isinf(x)

Arguments

x

matrix of real or complex numbers

r

matrix of booleans of the same size as x

Description

isinf(x) returns the matrix r of booleans such that, for each element x(i), r(i) is set to %T if and only if x(i) is infinite.

When x is complex-encoded, x(i) is considered infinite if its real part or its imaginary part (or both) are infinite.

Examples

[i, inf, nan] = (%i, %inf, %nan);
isinf([-1  0.01 -inf  inf  nan])
isinf([2+i, -10-inf, inf+i])
isinf([nan-i, inf-nan*i, nan+i*inf])

See also

  • isnan — "Not a Number" エントリを調べる
  • isreal — 変数が実数または複素数のエントリかどうかを調べるc
  • isnum — 文字列が数字であるかどうかを調べる
  • type — 変数の型を返す
Report an issue
<< int Floating point isnan >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Mon Feb 12 23:12:40 CET 2018