| << | >> |
Array declaration
Syntax
variable-name = [<expression1>, <expression2>, ...]
Description
SpecMan 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 can not be published.
Arrays in SpecMan are 1-based (first index is 1).
Example:
phase = [0., 90., 180., 270.] %% real array with 4 elements t = [5 ns, 65 ns] %% time array with 2 elements
| << | >> |