Data
SCPI Command :
CALCulate<n>:SPECtrogram:TSTamp:DATA
- Commands in total: 1Subgroups: 0Direct child commands: 1
- class GetStruct[source]
Response structure. Fields:
1 Seconds: float: Number of seconds that have passed since 01.01.1970 until the frame start
2 Nanoseconds: float: Number of nanoseconds that have passed in addition to the Seconds since 01.01.1970 until the frame start.
3 Reserved: float: The third value is reserved for future uses.
4 Reserved_B: float: The third value is reserved for future uses.
- get(frames: SelectionRangeB, window=Window.Default) GetStruct[source]
# CALCulate<n>:SPECtrogram:TSTamp:DATA value: GetStruct = driver.calculate.spectrogram.tstamp.data.get(frames = enums.SelectionRangeB.ALL, window = repcap.Window.Default)
Queries the starting time of the frames. The return values consist of four values for each frame. If the ‘Spectrogram’ is empty, the command returns ‘0,0,0,0’. The times are given as delta values, which simplifies evaluating relative results; however, you can also calculate the absolute date and time as displayed on the screen. The frame results themselves are returned with TRAC:DATA? SGR See method
RsFsw.trace.data.get().- Parameters:
frames – CURRent Returns the starting time of the current frame. ALL Returns the starting time for all frames. The results are sorted in descending order, beginning with the current frame.
window – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Calculate’)
- Returns:
structure: for return value, see the help for GetStruct structure arguments.