Mode

SCPI Command :

LAYout:HISTogram:MODE
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(histogram: str) HistogramLayoutMode[source]
# LAYout:HISTogram:MODE
value: enums.HistogramLayoutMode = driver.layout.histogram.mode.get(histogram = 'abc')

Defines or queries the type of histogram.

Parameters:

histogram – The name of the histogram as defined using method RsRtx.layout.histogram.add().

Returns:

mode: VERTical | HORizontal

  • VERTical: Amplitude histogram (horizontal bars across amplitude)

  • HORizontal: Time or frequency histogram (vertical bars over time/frequencies)

set(histogram: str, mode: HistogramLayoutMode) None[source]
# LAYout:HISTogram:MODE
driver.layout.histogram.mode.set(histogram = 'abc', mode = enums.HistogramLayoutMode.HORizontal)

Defines or queries the type of histogram.

Parameters:
  • histogram – The name of the histogram as defined using method RsRtx.layout.histogram.add().

  • mode

    VERTical | HORizontal

    • VERTical: Amplitude histogram (horizontal bars across amplitude)

    • HORizontal: Time or frequency histogram (vertical bars over time/frequencies)