qiskit.providers.aer.noise.ReadoutError.compose¶
- ReadoutError.compose(other, front=False)[Quellcode]¶
Return the composition readout error other * self.
Note that for front=True this is equivalent to the
ReadoutError.dot()
method.- Parameter
other (ReadoutError) – a readout error.
front (bool) – If True return the reverse order composation self * other instead [default: False].
- Rückgabe
The composition readout error.
- Rückgabetyp
- Verursacht
NoiseError – if other is not a ReadoutError or has incompatible
dimensions. –