Help Icon
Search Results for

    Show / Hide Table of Contents

    :SENSe:SWEep:POINts

    Description

    This command gets or sets the number of measurement frequency points.

    Syntax

    :SENSe<ch>:SWEep:POINts

    Command Query
    Query Response
    Yes Yes The number of measurement frequency points.
    Parameters
    Accepted Format
    Allowed Suffixes
    Possible Errors
    Description
    { <numeric> | MINimum | MAXimum } Range from 1 to Max. points none Numeric data error The number of measurement frequency points.

    To learn more about channels and traces, please refer to the SCPI command structure

    Presets

    For presets please refer to Measurement Modes and Default Settings.

    Sample usage

    Configure and start a sweep measurement from 10kHz to 20kHz with 500 steps.

    visaSession.write(':SENS:FREQ:STAR 10kHz;STOP 20kHz\n')
    visaSession.write(':SENS:SWE:POIN 500\n')
    visaSession.write(':TRIG:SING\n')
    visaSession.query('*OPC?\n')
    frequencyValues = visaSession.query(':SENS:FREQ:DATA?\n')
    measurementValues = visaSession.query(':CALC:DATA:SDAT?\n')
    
    In this article
    Back to top Generated by DocFX