Help Icon
Search Results for

    Show / Hide Table of Contents

    :SERVice:SWEep:POINts

    Description

    This command reads out the upper limit of the number of measurement points which is 100000 for all devices.

    • Query
    Syntax Response
    :SERVice:SWEep:POINts? <numeric>
    Response value meaning
    <numeric> the maximum number of measurement points.

    Sample usage

    Get the maximum number of measurement (sweep) points (e.g. value for Bode 100).

    • C#
    var visaSession = new TcpipSocket(VISA_RESOURCENAME);
    visaSession.RawIO.Write(":SERVice:SWEep:POINts?\n");
    Console.WriteLine(visaSession.RawIO.ReadString());
    

    Output:

    100000

    • Python
    response = visaSession.query(':SERVice:SWEep:POINts?\n')
    print(response)
    

    Output:

    100000

    In this article
    Back to top Generated by DocFX