ParameterSlice#

class scqubits.core.param_sweep.ParameterSlice(param_name, param_val, fixed_params, params_ordered)[source]#

Stores information about a 1d slice of a (possibly) multi-dimensional parameter sweep.

Parameters:
  • param_name (str) – name of the single parameter which is being swept

  • param_val (float) – single selected value of the parameter (as used, e.g., in the Explorer)

  • fixed_params (Dict[str, float]) – dictionary giving the names of the fixed parameters and their corresponding values

  • params_ordered (List[str]) – list of all parameter names, giving their ordering

Methods

ParameterSlice.__init__(param_name, ...)