v-ist-keine-zahl-mathe

hio/nwt-gus-hi/v-ist-keine-zahl-mathe

Bestimmt, ob die gegebene Zahl ein NaN (Not a Number -Wert ist.
v-ist-keine-zahl-mathe
@/v-ist-keine-zahl-mathe
Bestimmt, ob die gegebene Zahl ein NaN (Not a Number -Wert ist.
Eingabenumber
v-ist-keine-zahl-mathe
Ausgabe
Eingabe
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, isnan(inValue));
    }
}

Tabular tests

EingabeAusgabe
0false
10false
732.123false
-732.123false
NaNtrue
Inffalse
-Inffalse