Syntax

variable-name = [<expression1>, <expression2>, ...]

Description

PPL script allows declaration of 1-dimensional arrays of all available types. Declaration of array is made by assignment. All expressions in assignment has to be of the same type. Arrays cannot be addressed from outside of PPL script.

Arrays are 1-based (first index is 1).

Example:

phase = [0., 90., 180., 270.] %% real array with 4 elements t = [5ns, 65ns] %% time array with 2 elements det = [I, Q] %% signals' array

Legend: PPL keywords; PPL pulse commands; comments.