Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

famCreateFamily

famCreateFamily(
s_sweepName
s_varType
) 
=> o_family

Description

Creates a empty data structure called a family. When filled with data, it is suitable to be plotted as a family of curves. Each waveform has a name given by s_varName and the values are added with famAddValue.

Arguments

s_sweepName

The string name of the sweep variable.

s_varType

One of the following variable types:

'double, 'doublecomplex, 'float, 'intlong, 'signal, 'string.

The varType of 'float is equivalent to 'double and 'signal is equivalent to 'string.

Value Returned

o_family

An empty family with the variable label s_var.

Examples

fam = famCreateFamily( "prf" 'double )
=> srrWave:17518616
famAddValue( fam -15 wave15 )
=> srrWave:17518616
famAddValue( fam -10 wave10 )
=> srrWave:17518616
famAddValue( fam -5 wave5 )
=> srrWave:17518616

Related Topics

famAddValue


Return to top
 ⠀
X