2.1.1.3 out_double


Description

a simple function to print a double value, output will be the current output window, can be the Script Window, the output log or the labtalk console.

Syntax

int out_double( LPCSTR lpcstr, double dbValue )

Parameters

lpcstr
dbValue

Return

the number of characters printed

Examples

EX1

void out_double_ex1()
{
    double vv = sin(3.14);
    out_double("vv = ",vv);
}

Remark

See Also

out_str, out_int

Header to Include

origin.h

Reference