hi,
inside the DDS it is possible to create
an array or a matrix with y=[1,2] and
y={[1,2],[1,2]} respectively.
but how i can build a variable with 2 dependencies, like the outcome for a sweeped simulation, where i have as independend variable 'index' and 'X' (X is the sweeped variable)?
thx georg
inside the DDS it is possible to create
an array or a matrix with y=[1,2] and
y={[1,2],[1,2]} respectively.
but how i can build a variable with 2 dependencies, like the outcome for a sweeped simulation, where i have as independend variable 'index' and 'X' (X is the sweeped variable)?
thx georg
Try vs()
You can have something like this
x=[1,2,3]
myfreq=[1e9,2e9,3e9]
y=vs(myfreq,x)
thanks
nilesh 8)