isfinite()
S’applique à : ✅Microsoft Fabric✅Azure Data Explorer✅Azure Monitor✅Microsoft Sentinel
Retourne si l’entrée est une valeur finie, ce qui signifie qu’elle n’est pas infinie ou NaN.
Syntaxe
isfinite(
nombre)
En savoir plus sur les conventions de syntaxe.
Paramètres
Nom | Type | Requise | Description |
---|---|---|---|
nombre | real |
✔️ | Valeur à vérifier si finie. |
Retours
true
si x est fini et false
sinon.
Exemple
range x from -1 to 1 step 1
| extend y = 0.0
| extend div = 1.0*x/y
| extend isfinite=isfinite(div)
Sortie
x | y | div | isfinite |
---|---|---|---|
-1 | 0 | -∞ | 0 |
0 | 0 | NaN | 0 |
1 | 0 | ∞ | 0 |