RFmxDemodMX.AnalyzeIQ1Waveform Method
- Updated2024-07-17
- 2 minute(s) read
RFmx
Performs the enabled measurements on the I/Q complex waveform that you specify in iq parameter. Call this method after you configure the signal and measurement properties. You can fetch measurement results using the Fetch methods. Use this method only if the RFmxInstrMX.SetRecommendedAcquisitionType method
is IQ. This method is supported only when the RFmxInstr session is created with option string "AnalysisOnly=1".
![]() |
---|
Query the RFmxInstrMXRecommendedAcquisitionType property after calling the Commit(String) method. |
Namespace: NationalInstruments.RFmx.DemodMX
Assembly: NationalInstruments.RFmx.DemodMX.Fx40 (in NationalInstruments.RFmx.DemodMX.Fx40.dll) Version: 24.5.0.49286 (24.5.0.49286)
Syntax
public int AnalyzeIQ1Waveform( string selectorString, string resultName, ComplexWaveform<ComplexSingle> iq, bool reset, long reserved )
Public Function AnalyzeIQ1Waveform ( selectorString As String, resultName As String, iq As ComplexWaveform(Of ComplexSingle), reset As Boolean, reserved As Long ) As Integer
Parameters
- selectorString String
-
Specifies a selector string comprising the result name. The result name can either be specified through this input or the resultName parameter. If you do not specify the result name in this input, either the result name specified by resultName parameter or the default result instance is used.
Example:
""
"result::r1"
You can use theBuildResultString(String) method to build the selector string. - resultName String
-
Specifies the name to be associated with measurement results. Provide a unique name, such as "r1" to enable fetching of multiple measurement results and traces. This input accepts the result name with or without the "result:" prefix.
Example:
""
"result::r1" - iq ComplexWaveformComplexSingle
- Specifies the data for a complex IQ waveform including the start, delta, and actual values.
- reset Boolean
- Resets the measurement averaging. If you enable averaging, set this parameter to TRUE for first record and FALSE for subsequent records.
- reserved Int64
- Reserved for future use. Any value passed to this parameter will be ignored.
Return Value
Int32Returns the status code of this method. The status code either indicates success or describes an error or warning condition.
Remarks
This method maps to the RFmxDemod_AnalyzeIQ1Waveform() function in C.