Power
SCPI Commands :
[SOURce<HW>]:CORRection:CSET:DATA:POWer:POINts
[SOURce<HW>]:CORRection:CSET:DATA:POWer
- Commands in total: 3Subgroups: 1Direct child commands: 2
- get_points() int[source]
# [SOURce<HW>]:CORRection:CSET:DATA:POWer:POINts value: int = driver.source.correction.cset.data.power.get_points()
Queries the number of frequency/level values in the selected table.
- Returns:
points: integer Range: 0 to 10000
- get_value() List[float][source]
# [SOURce<HW>]:CORRection:CSET:DATA:POWer value: List[float] = driver.source.correction.cset.data.power.get_value()
Enters the level values to the table selected with method
RsSmw.source.correction.cset.select().- Returns:
power: Power#1[, Power#2, …] String of values with default unit dB.
*RST: 0
- set_value(power: List[float]) None[source]
# [SOURce<HW>]:CORRection:CSET:DATA:POWer driver.source.correction.cset.data.power.set_value(power = [1.1, 2.2, 3.3])
Enters the level values to the table selected with method
RsSmw.source.correction.cset.select().- Parameters:
power – Power#1[, Power#2, …] String of values with default unit dB.
*RST: 0
Cloning the Group
# Create a copy of the original group, that exists independently
power_copy = driver.source.correction.cset.data.power.clone()
Subgroups