v-ist-endlich-mathe

hio/nwt-gus-hi/v-ist-endlich-mathe

Bestimmt, ob die gegebene Zahl einen endlichen Wert hat, d. h., ob sie normal, subnormal oder null ist, aber nicht unendlich oder NaN (Not a Number).
v-ist-endlich-mathe
@/v-ist-endlich-mathe
Bestimmt, ob die gegebene Zahl einen endlichen Wert hat, d. h., ob sie normal, subnormal oder null ist, aber nicht unendlich oder NaN (Not a Number).
Eingabenumber
v-ist-endlich-mathe
Eingabe
Ausgabe
Ausgabeboolean
To use the node in your project you should have the hio/nwt-gus-hi library installed. Use the “File → Add Library” menu item in XOD IDE if you don’t have it yet. See Using libraries for more info.

C++ implementation

node {
    void evaluate(Context ctx) {
        auto inValue = getValue<input_Eingabe>(ctx);
        emitValue<output_Ausgabe>(ctx, isfinite(inValue));
    }
}

Tabular tests

EingabeAusgabe
0true
10true
732.123true
-732.123true
NaNfalse
Inffalse
-Inffalse