beautypg.com

Teledyne LeCroy WaveExpert 100H Operators Manual User Manual

Page 285

background image

Wave Expert

WE-OM-E Rev A

283

early (but Exit For is better), but you could also prevent it from terminating at all.

For emergency exit, you can use Exit For. For example:

For K = 0 To Total

If HistogramBin(K) = 0 Then Exit For

AnyVBScripting

Next

It is possible to make a For loop with steps greater than 1, as in the following example in which K
takes the values 3, 7, 11, 15, . . . . 83.

For K = 3 To 82 Step 4

AnyVBScripting

Next K

You may place loops inside one another (nested loops), but they must all use different control
variables. Example:

For K = 0 To N

VBScriptingK

For L = - 7 To 17

VBScriptingL

For M = S To T

VBScriptingM

Next

Next

Next

VBS keywords and functions

The ones in italics do not apply to the instrument.

+

Add two values or concatenate two strings.

-

Subtract two values.

*

Multiply two values.

/

Divide two values.

\

Divide two values to obtain an integer result

Abs

Make absolute value.

Asc

Make ASCII value of a character.

Atn

Make tan

-1

of a value. Result in range from -

π /2

to +

π /2 radians.