mesoscopy.measurement.array
Functions
|
function for backward compatibility |
|
|
|
generate an array over a specified interval. requires <start> and <stop> and either <step> or <num> args: start (Union[int, float]): starting value fof the sequence stop(Union[int, float]): end value of sequence step (Optional[Union[int, float]]): spacing between values num (Optional[int]): number of values to generate. tol (Optional[float]): step size tolerance. returns: numpy.ndarray: numbers over the specified interval. |
- mesoscopy.measurement.array.generate_lin_array(start, stop, step=None, num=None, tol=1e-10)
generate an array over a specified interval. requires <start> and <stop> and either <step> or <num> args:
start (Union[int, float]): starting value fof the sequence stop(Union[int, float]): end value of sequence step (Optional[Union[int, float]]): spacing between values num (Optional[int]): number of values to generate. tol (Optional[float]): step size tolerance.
- returns:
numpy.ndarray: numbers over the specified interval.
- mesoscopy.measurement.array.generate_RF_array(start, stop, step=None, num=None, tol=1e-10, attenuation=45)
- mesoscopy.measurement.array.generate_1D_sweep_array(start, stop, step=None, num=None, tol=1e-10)
function for backward compatibility