InvertableCalibrationΒΆ
Class Arguments
Argument |
Type |
Default Value |
---|---|---|
input_unit |
TStr |
|
output_unit |
TStr |
Bold arguments are mandatory. For more documentation on the listed arguments refer to the class definition below. If parameters appear in this list but not in the class definition below, please recursively check the linked base classes for the definition of the parameter.
Inheritance Diagram
Example Component Dictionary
{
"calibration_example": {
"classname": "atomiq.components.basics.calibration.InvertableCalibration",
"arguments": {
"input_unit": "<mandatory parameter (TStr)>",
"output_unit": "<mandatory parameter (TStr)>"
}
}
}
Class Description
- class atomiq.components.basics.calibration.InvertableCalibration(input_unit, output_unit, *args, **kwargs)[source]
Bases:
Calibration
- Parameters:
input_unit (TStr)
output_unit (TStr)
- transform_inv(input_value)[source]
Perform inverse transform of a value according to the calibration
- Parameters:
input_value (artiq.compiler.types.TMono('float', OrderedDict())) -- value to be inversely transformed. Must be given in units of the output unit
- Returns:
transformed value. The returned value is in units of the input unit
- Return type:
TFloat
- transform(input_value)
Transform a value according to the calibration
- Parameters:
input_value (artiq.compiler.types.TMono('float', OrderedDict())) -- value to be transformed
- Returns:
transformed value
- Return type:
TFloat