Write-only |
Data Access Map |
Description |
Note: This command is replaced by PutErrorTermComplexByString Puts error term data into the error-correction data buffer. If this command is being used to modify a calset that is currently in use by the channel, you must send the following commands to see the effects of the change: Calset::Save Channel::ErrorCorrection = false Channel::ErrorCorrection = true
Learn more about reading and writing Cal data using COM |
VB Syntax |
data.putErrorTermComplex term, rcv, src, numPts, real(), imag() |
Variable |
(Type) - Description |
data |
An ICalData pointer to the Calibrator object |
term |
(enum NAErrorTerm) - The error term to be retrieved. Choose from:
|
rcv |
(long integer) - Receiver Port |
src |
(long integer) - Source Port |
numPts |
(long integer) - number of data points in the array |
real() |
(single) - array containing the real part of the calibration data. One-dimensional: the number of data points. |
imag() |
(single) - array containing the imaginary part of the calibration data. One-dimensional: the number of data points. |
|
To get this |
Specify these parameters: |
||
|
Error Term |
term |
rcv |
src |
|
Fwd Directivity |
naET_Directivity Isolation |
1 |
1 |
|
Rev Directivity |
naET_Directivity Isolation |
2 |
2 |
|
Fwd Isolation |
naET_Directivity Isolation |
2 |
1 |
|
Rev Isolation |
naET_Directivity Isolation |
1 |
2 |
|
Fwd Source Match |
naErrorTerm_Match |
1 |
1 |
|
Rev Source Match |
naErrorTerm_Match |
2 |
2 |
|
Fwd Load Match |
naErrorTerm_Match |
2 |
1 |
|
Rev Load Match |
naErrorTerm_Match |
1 |
2 |
|
Fwd Reflection Tracking |
naErrorTerm_Tracking |
1 |
1 |
|
Rev Reflection Tracking |
naErrorTerm_Tracking |
2 |
2 |
|
Fwd Trans Tracking |
naErrorTerm_Tracking |
2 |
1 |
|
Rev Trans Tracking |
naErrorTerm_Tracking |
1 |
2 |
|
Fwd Trans Tracking |
naErrorTerm_Tracking |
2 |
1 |
Return Type |
Not Applicable |
Default |
Not Applicable |
Examples |
Dim eData As ICalData |
C++ Syntax |
HRESULT putErrorTermComplex(tagNAErrorTerm ETerm, long ReceivePort, long SourcePort, long* pNumValues, float* pReal, float* pImag) |
Interface |
ICalData |