???
Hi,
I would like to zoom into the 3 dB bandwidth of a transfer function.
Therefore I am looking for a function to truncate a vector depending on a equation.
For example:
S21_t = vector_trunc( S(2,1), dB(S(2,1))<-3 )
This will return the vector of all S21 points fulfill the equation plus the according freq values.
All comments are wellcome. Thanks Wolfram
Hi,
I would like to zoom into the 3 dB bandwidth of a transfer function.
Therefore I am looking for a function to truncate a vector depending on a equation.
For example:
S21_t = vector_trunc( S(2,1), dB(S(2,1))<-3 )
This will return the vector of all S21 points fulfill the equation plus the according freq values.
All comments are wellcome. Thanks Wolfram
http://edasupportweb.soco.agilent.com/cgi-bin/show.pl?id=8797
In ADS 2003A you can use the new find() function to do this slightly easier:
Indexes = find( db(S21) > -3 )
ZoomedS21 = S21[ min(Indexes)::max(Indexes) ]
URL modified by support_admin @ Mar 3 2004