Read-only |
About Cal Sets |
Description |
This command is replaced with Get ErrorTermComplexByString Returns error term data from the Cal Set. The data is in complex pairs. Learn more about Reading and Writing Cal Data See examples of Reading and Writing Cal Set Data Note: This method exists on a non-default interface. If you cannot access this method, use the GetErrorTerm Method on ICal Set. |
VB Syntax |
iCalData2.GetErrorTermComplex setNumber, term, rcv, src, numPts, real(), imag() |
Variable |
(Type) - Description |
iCalData2 |
An ICalData2 pointer to the Cal Set object |
setNumber |
(Long) There can be more than one set of error terms in a Cal Set.
|
term |
(enum NAErrorTerm2) - The error term to be retrieved. Choose from: 0 - naET_Directivity 1 - naET_SourceMatch 2 - naET_ReflectionTracking 3 - naET_TransmissionTracking 4 - naET_LoadMatch 5 - naET_Isolation |
rcv |
(Long) - Receiver Port |
src |
(Long) - Source Port |
numPts |
(Long) An In/Out parameter. On the way in, you specify the max number of values being requested. On the way out, the VNA returns number of values actually returned. |
real() |
(single) - array to accept the real part of the error-term. One-dimensional for the number of data points. |
imag() |
(single) - array to accept the imaginary part of the error-term. One-dimensional for the number of data points. |
Return Type |
Single |
Default |
Not Applicable |
Examples |
dim numpts as long |
C++ Syntax |
HRESULT getErrorTermComplex(long setID, tagNAErrorTerm2 ETerm, long ReceivePort, long SourcePort, long* pNumValues, float* pReal, float* pImag) |
Interface |
ICalData2 |