Example - Manual - SIMATIC AX - Mathematical functions. - System.Math,library

System.Math library

Portfolio
SIMATIC AX
Product
SIMATIC AX
Software version
6.0.94
Edition
08/2025
Language
English (original)
Package Name
@ax/system-math
USING System.Math;

PROGRAM SampleProgram
    VAR_TEMP
        q : REAL;
    END_VAR

    q := Tan(REAL#0.57);

END_PROGRAM