Normalize

SCPI Command :

EXPort:HISTogram<*>:NORMalize
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(histogram=Histogram.Default) bool[source]
# EXPort:HISTogram<*>:NORMalize
value: bool = driver.export.histogram.normalize.get(histogram = repcap.Histogram.Default)

If normalization is off, the number of samples in a given bin is exported as integer values. With normalization, the ratio of samples in a given bin to the sum of all samples is exported as float value. The sum of all normalized values is 1. The command affects all histogram exports.

Parameters:

histogram – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Histogram’)

Returns:

normalization: OFF | ON

set(normalization: bool, histogram=Histogram.Default) None[source]
# EXPort:HISTogram<*>:NORMalize
driver.export.histogram.normalize.set(normalization = False, histogram = repcap.Histogram.Default)

If normalization is off, the number of samples in a given bin is exported as integer values. With normalization, the ratio of samples in a given bin to the sum of all samples is exported as float value. The sum of all normalized values is 1. The command affects all histogram exports.

Parameters:
  • normalization – OFF | ON

  • histogram – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Histogram’)