FormatPy

SCPI Commands

TRACe:IQ:DATA:FORMat
class FormatPyCls[source]

FormatPy commands group definition. 1 total commands, 0 Subgroups, 1 group commands

get() IqResultDataFormat[source]
# SCPI: TRACe:IQ:DATA:FORMat
value: enums.IqResultDataFormat = driver.applications.iqAnalyzer.trace.iq.data.formatPy.get()

This command selects the order of the I/Q data. For details see ‘Reference: format description for I/Q data files’.

return

data_format: No help available

set(data_format: IqResultDataFormat) None[source]
# SCPI: TRACe:IQ:DATA:FORMat
driver.applications.iqAnalyzer.trace.iq.data.formatPy.set(data_format = enums.IqResultDataFormat.COMPatible)

This command selects the order of the I/Q data. For details see ‘Reference: format description for I/Q data files’.

param data_format

COMPatible | IQBLock | IQPair COMPatible I and Q values are separated and collected in blocks: A block (512k) of I values is followed by a block (512k) of Q values, followed by a block of I values, followed by a block of Q values etc. (I,I,I,I,Q,Q,Q,Q,I,I,I,I,Q,Q,Q,Q…) IQBLock First all I-values are listed, then the Q-values (I,I,I,I,I,I,…Q,Q,Q,Q,Q,Q) IQPair One pair of I/Q values after the other is listed (I,Q,I,Q,I,Q…) .