Command Descriptions
3-186
AWG610 Arbitrary Waveform Generator User Manual
start_point is the location of the first data point to extract from the input file.
This is an integer value. The starting point value must be less than or equal to the
ending point value or an error occurs during compilation.
end_point is the location of the last data point to extract from the input file. This
is an integer value. The ending point value must be greater than or equal to the
starting point value or an error occurs during compilation.
. This command lets you create a waveform file that does not meet the
instrument waveform minimum data requirement (minimum of 512 points, evenly
divisible by eight). If you create such a file, open it in a waveform editor, and
then attempt to save it, the instrument displays a dialog box asking you to
correct the problem. If you attempt to load the waveform in the Setup screen, the
instrument displays an error message stating that the file does not have enough
data points.
”shortsin.wfm” = extract(”sine.wfm”, 0, 511)
For (Control Statement)
The for (control statement) provides a structure for executing one or more
equation expressions a defined number of times.
Control
for <var> = <start> to <end> <expr> next
for <var> = <start> to <end> step <incr> <expr> next
var is a variable name to contain the for loop count value. A common variable
name used for this purpose is i. As long as the value of var is true (between the
start and end values, inclusive), the program executes the expression(s) in the for
loop. When var is false (var > end for incr > 0, and var < end for incr > 0),
program flow jumps to the line immediately following next.
start is a value or expression that defines the starting number (integer or real) of
the for statement loop count.
end is a value or expression that defines the end number (integer or real) of the
for statement loop count.
Example
Group
Syntax
Arguments
Содержание AWG610
Страница 4: ......
Страница 24: ...Preface AWG610 Arbitrary Waveform Generator User Manual...
Страница 94: ...Tutorials 2 56 AWG610 Arbitrary Waveform Generator User Manual Figure 2 36 The Standard Function dialog box...
Страница 216: ...Quick Editing AWG610 Arbitrary Waveform Generator User Manual...
Страница 220: ...The Table Editor AWG610 Arbitrary Waveform Generator User Manual...
Страница 242: ...The Sequence Editor AWG610 Arbitrary Waveform Generator User Manual...
Страница 288: ...The UTILITY Window AWG610 Arbitrary Waveform Generator User Manual...
Страница 292: ...Capturing Waveforms AWG610 Arbitrary Waveform Generator User Manual...
Страница 325: ...Programming Examples AWG610 Arbitrary Waveform Generator User Manual 3 207 Figure 3 66 Gaussian noise and ramp waveforms...
Страница 326: ...Programming Examples AWG610 Arbitrary Waveform Generator User Manual...
Страница 338: ...File Management AWG610 Arbitrary Waveform Generator User Manual...
Страница 424: ...Appendix B Performance Verification AWG610 Arbitrary Waveform Generator User Manual...
Страница 440: ...Appendix E File Transfer Interface Outline AWG610 Arbitrary Waveform Generator User Manual...