Product Documentation
Cadence SKILL Language Reference
Product Version IC23.1, November 2023

vector

vector( 
g_value ... 
)
=> a_vectorArray

Description

Returns a vector or array, filled with the arguments in the given order. The vector function is analogous to the list function.

A vector is implemented as a SKILL array.

Arguments

g_value

Ordered list of values to be placed in an array.

Value Returned

a_vectorArray

Array filled with the arguments in the given order.

Examples

V = vector( 1 2 3 4 ) 
=> array[4]:33394440
V[0] 
=> 1
V[3] 
=> 4

Related Topics

declare

list

makeVector


Return to top
 ⠀
X