SimplifiedNoise
public enum SimplifiedNoise
extension SimplifiedNoise: Hashable
Simplified representation of a quantum noise operator. Use to easily identify the type of a quantum noise and its components
-
Noise channel that applies a bit flip to
targetwith givenprobabilityDeclaration
Swift
case bitFlip(probability: Double, target: Int) -
Noise channel that applies
matricesto any number ofinputsDeclaration
Swift
case matrices(matrices: [Matrix], inputs: [Int]) -
Noise channel that applies a phase damping to
targetwith givenprobabilityDeclaration
Swift
case phaseDamping(probability: Double, target: Int)
SimplifiedNoise Enumeration Reference