Trace(), Is equivalent to, Trace() trace( <arg1 any >, <arg2 any >, ... ) – Teledyne LeCroy Merlins Wand - Users Manual User Manual

Page 297: None, Would result in the output

Advertising
background image

281

CATC M

ERLIN

S

W

AND

2.00

C

HAPTER

D

User’s Manual

CATC Scripting Language

Comments

Attempts to resolve the value of a symbol. Can resolve global, constant, and
local symbols. Spaces in the symbol_name parameter are interpreted as
the ‘_’ (underscore) character since function names cannot contain spaces.

Example

a = Resolve( "symbol" );

is equivalent to:

a = symbol;

Trace()

Trace( <arg1 any>, <arg2 any>, ... )

Return value

None.

Comments

The values given to this function are given to the debug console.

Example

list = ["cat", "dog", "cow"];

Trace("List = ", list, "\n");

would result in the output

List = [cat, dog, cow]

Parameter

Meaning

Default Value

Comments

arg any

The number of arguments is variable.

Advertising