User's Manual
Table Of Contents
- Title page
- Table of Contents
- General Safety Summary
- Preface
- Getting Started
- Operating Basics
- Reference
- Reference
- Menu Structures
- The Setup Menu Screen
- The Graphical Waveform Editor
- The Pattern Editor
- Quick Editing
- The Table Editor
- The Equation Editor
- The Sequence Editor
- The APPL Menu
- The UTILITY Window
- External Keyboards
- Setting General Purpose Knob Direction
- Formatting a Floppy Disk
- Displaying Disk Usage
- Screen Display Enable/Disable
- Focused Color
- Displaying Instrument Status
- Internal Clock (Date and Time)
- Resetting the Instrument
- Connecting to a GPIB Network
- Ethernet Networking
- Hardcopy
- Calibration and Diagnostics
- Upgrading the System Software
- Capturing Waveforms
- Waveform Programming Language
- Command Descriptions
- Programming Examples
- File Conversion
- File Management
- FG Mode
- Waveform Mixing Mode
- Synchronous Operation Mode (AWG710B only)
- Appendices
- Appendix A: Specifications (AWG710B)
- Appendix A: Specifications (AWG710)
- Appendix B: Performance Verification (AWG710B)
- Conventions
- Self Tests
- Performance Tests
- Operating Mode Tests
- Amplitude and Offset Accuracy Tests (Normal Out), (except option 02)
- Amplitude, Offset Accuracy and Rise Time Tests (Direct DA Out), (except option 02)
- Amplitude, Offset Accuracy and Rise Time Tests (for option 02)
- Pulse Response Tests (Normal Out), (except option 02)
- Trigger Input Tests
- Event Input and Enhanced Mode Tests
- External Clock Input and VCO Out Output Tests
- VCO OUT Output Frequency and 10 MHz Reference Input Tests
- Marker Output Tests
- Synchronous Operation Tests
- Appendix B: Performance Verification (AWG710)
- Conventions
- Self Tests
- Performance Tests
- Operating Mode Tests
- Amplitude and Offset Accuracy Tests (Normal Out), (except option 02)
- Amplitude, Offset Accuracy and Rise Time Tests (Direct DA Out), (except option 02)
- Amplitude, Offset Accuracy and Rise Time Tests (for option 02)
- Pulse Response Tests (Normal Out), (except option 02)
- Trigger Input Tests
- Event Input and Enhanced Mode Tests
- 1/4 Clock Frequency and 10 MHz Reference Input Tests
- Marker Output Tests
- Appendix C: Inspection and Cleaning
- Appendix D: Sample Waveforms
- Appendix E: File Transfer Interface Outline
- Appendix F: Miscellaneous
- Appendix G: Sequence File Text Format
- Index

Waveform Programming Language
AWG710&AWG710B Arbitrary Waveform Generator User Manual 3-187
Waveform Files
Some commands accept a waveform file name enclosed in double quotes. For
example: "sinewave.wfm". Observe the following rules when using waveform
expressions in equations:
A quoted string can include any character defined in the 7–bit ASCII character
set.
A numeric value can be embedded in a string in the following format:
“AA”:i:“.WFM”
If the value of i equals 10, the string “AA10.WFM” will result. Before
conversion into the string, the value is rounded to the nearest integer.
One waveform expression can include a maximum of 10 input files. If the same
file name appears more than once in a single waveform expression, that file is
considered as one file. An exception to this is that “A.WFM” and
“A.WFM”.marker1 are two different files.
Signal names, as well as variables, are permitted in a waveform expression.
Waveform expressions enable you to specify calculation between waveforms
in a similar manner as ordinary expressions. For example, if you code the
following:
“A.WFM” = sin(2*pi*scale) + “B.WFM”
A.WFM is produced as the sum of the sinewave equation and B.WFM
waveforms.
Waveform Expression
The output name, placed to the left of an ‘=’, and the name used in the expression
to the right of an ‘=’ is a <signal–name>. The marker data may be specified as
follows in addition to the name of an ordinary waveform file:
“A.WFM”.marker2 = “A.WFM” > “B.WFM” > “B.WFM”
In this example, 1 is set if the A.WFM value as the A.WFM marker 2 value is larger
than the B.WFM value; 0 is set otherwise. (This is the same as for the compare
function of the editor.) The A.WFM analog data is unchanged.
“B.WFM”.marker1 = “A.WFM”.marker1 + “A.WFM”.marker2
In this example, B.WFM’s marker1 is set if either marker 1 or 2 of A.WFM is 1.