[docs]@TRACER.start_as_current_span("qcodes.dataset.do1d")defdo1d(param_set:ParameterBase,start:float,stop:float,num_points:int,delay:float,*param_meas:ParamMeasT,**kwargs:Unpack[DondKWargs],)->AxesTupleListWithDataSet:""" Perform a 1D scan of ``param_set`` from ``start`` to ``stop`` in ``num_points`` measuring param_meas at each step. In case param_meas is an ArrayParameter this is effectively a 2d scan. Args: param_set: The QCoDeS parameter to sweep over start: Starting point of sweep stop: End point of sweep num_points: Number of points in sweep delay: Delay after setting parameter before measurement is performed *param_meas: Parameter(s) to measure at each step or functions that will be called at each step. The function should take no arguments. The parameters and functions are called in the order they are supplied. **kwargs: kwargs are the same as for :func:`dond` and forwarded directly to :func:`dond`. Returns: The QCoDeS dataset. """kwargs.setdefault("log_info","Using 'qcodes.dataset.do1d'")returncast("AxesTupleListWithDataSet",dond(LinSweep(param=param_set,start=start,stop=stop,delay=delay,num_points=num_points,),*param_meas,**kwargs,squeeze=True,),)