EasyManua.ls Logo

Keysight Technologies J-BERT M8020A

Keysight Technologies J-BERT M8020A
502 pages
To Next Page IconTo Next Page
To Next Page IconTo Next Page
To Previous Page IconTo Previous Page
To Previous Page IconTo Previous Page
Loading...
Keysight M8070A Programming Guide 75
Programming Examples 3
public override List<string> sync()
{
return this.Send(":SENS1:SYNC 1");
}
# endregion
#region sampling point
public override List<string> setSamplingPointDelay(double x)
{
return this.Send(":INP1:DEL " + x.ToString());
}
public override double getSamplingPointDelay()
{
string str = "";
double delay = 0.0;
str = this.Query(":INP1:DEL?");
delay = double.Parse(str);
return delay;
}
public override List<string> setSamplingPointDelayRel(double x)
{
double current = 0.0;
current = this.getSamplingPointDelay();
x += current;
return setSamplingPointDelay(x);
}
#endregion

Table of Contents

Other manuals for Keysight Technologies J-BERT M8020A

Related product manuals