Condition

SCPI Command :

SEARch:TRIGger:DPHY:DIDX:CONDition
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(search: str) DataIndexOperator[source]
# SEARch:TRIGger:DPHY:DIDX:CONDition
value: enums.DataIndexOperator = driver.search.trigger.dphy.didx.condition.get(search = 'abc')

Sets the condition for the data index. You can define an exact value or a value range.

Parameters:

search

EQUal | LTHan | LETHan | GTHan | GETHan | INRange | RANGe

  • EQUal | NEQual | LTHan | LETHan | GTHan | GETHan: Equal, Not equal, Less than, Less or equal than, Greater Than, Greater or equal than. These conditions require one pattern to be set with the corresponding SEARch:TRIGger:DPHY:DIDX:MIN command.

  • INRange = RANGe: In range: Set the minimum and maximum value using SEARch:TRIGger:DPHY:DIDX:MIN and SEARch:TRIGger:DPHY:DIDX:MAX.

set(search: str, dat_index_optor: DataIndexOperator) None[source]
# SEARch:TRIGger:DPHY:DIDX:CONDition
driver.search.trigger.dphy.didx.condition.set(search = 'abc', dat_index_optor = enums.DataIndexOperator.ANY)

Sets the condition for the data index. You can define an exact value or a value range.