Member of the support class.
format
format short
format short e
format long
format long e
Modifies the display format of numbers. format short displays 5 digits in scaled fixed-point format. For example, 100*pi in short format returns 314.15927. format short e displays 5 digits in floating-point format. For example, 100*pi in short e format returns 3.14159E+2. format long displays 15 digits in scaled fixed-point format. For example, 100*pi in long format returns 314.159265358979326. format long e displays 15 digits in floating-point format. For example, 100*pi in long e format returns 3.141592653589793E+2. format is equivalent to format short.
Changes that you make to the display format of numbers with this function apply to all MathScript Nodes in the same application instance as the LabVIEW MathScript Window.
format long
A = sqrt(2)
format short e
B = sqrt(2)
format
C = sqrt(2)