Read-only |
Data Access Map |
Description |
Retrieves complex data from the specified location. See also getNAComplex , getData , and getPairedData Methods |
VB Syntax |
measData.getComplex location, numPts, real(), imag() |
Variable |
(Type) - Description |
measData |
An IArrayTransfer interface which supports the Measurement object |
location |
(enum NADataStore - IArrayTransfer) - Where the data you want is residing. Choose from: 0 - naRawData 1 - naCorrectedData 2 - naMeasResult 3 - naRawMemory 4 - naMemoryResult 5 - naDivisor - When reading data from, or writing data to, the normalization divisor, you must first create a divisor trace using DataToDivisor Method. |
numPts |
(long integer) - Number of data points requested |
real |
(single) - Array to store the real values |
imag |
(single) - Array to store the imaginary values |
Return Type |
Single |
Default |
Not Applicable |
Examples |
Dim real(201) AS Single |
C++ Syntax |
IArrayTransfer - HRESULT getComplex(tagNADataStore DataStore, long* pNumValues, float* pReal, float* pImag) |
Interface |
IArrayTransfer |