qiskit.providers.aer.noise.ReadoutError.compose¶
- ReadoutError.compose(other, front=False)[소스]¶
Return the composition readout error other * self.
Note that for front=True this is equivalent to the
ReadoutError.dot()
method.- 매개변수
other (ReadoutError) – a readout error.
front (bool) – If True return the reverse order composation self * other instead [default: False].
- 반환
The composition readout error.
- 반환 형식
- 예외 발생
NoiseError – if other is not a ReadoutError or has incompatible
dimensions. –