QCpython


NameQCpython JSON
Version 1.0 PyPI version JSON
download
home_pagehttps://github.com/QCpyDevs/QCpy
Summary
upload_time2023-01-08 22:56:34
maintainer
docs_urlNone
authorBrennan Freeze, Paris Osuch, Aundre Barras, Soren Richenberg
requires_python
licenseMIT
keywords quantum computing visualization simulation linear algebra
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # README.md

# QCpy - A Quantum Computing Library for Python

QCpy is an open source python library and collaborative project for flexible simulations and visualizations of quantum circuits. Designed by college students with students in mind, this library contains a powerful set of tools to teach computer scientists about the emerging discipline of quantum computing (QC).

## Recommended Resources on Quantum Computing:

- [Microsoft’s Linear Algebra for Quantum Computing](https://learn.microsoft.com/en-us/azure/quantum/overview-algebra-for-quantum-computing)
- [IBM’s Quantum Computing: a field guide](https://quantum-computing.ibm.com/composer/docs/iqx/guide/)
- [Wikipedia: Quantum Computing](https://en.wikipedia.org/wiki/Quantum_computing)

---

# Qubits

> ## *class* QC.Qubit.`Qubit`(*initial_state=’z’*)

*Object representation of a qubit.*

### Parameters:

`initial_state (chr)` - Character input for starting direction in the *x*, *y*, or *z* axis.

### Attributes:

`state (numpy.ndarray)` -  current state of qubit in matrix representation.

---

# Quantum Gates

> ## *class* QC.QuantumGate.`Identity`()

*Gate that does not modify the quantum state.*

### Parameters:

`None`

### Attributes:

`matrix (np.ndarray)` - matrix representation of Identity gate.

```python
Identity.matrix = [1+0j, 0+0j], 
	          [0+0j, 1+0j]
```

> ## *class* QC.QuantumGate.`PauliX`()

*Quantum equivalent of the NOT gate in classical computing with respect to the standard basis |0>, |1>.*

### Parameters:

`None`

### Attributes:

`matrix (np.ndarray)` - matrix representation of Pauli-X gate.

```python
PauliX.matrix = [0+0j, 1+0j], 
	        [1+0j, 0+0j]
```

> ## *class* QC.QuantumGate.`PauliY`()

*Rotation around y-axis of the bloch sphere by π radiains, mapping |0> to i|1> and |1> to -i|0>.*

### Parameters:

`None`

### Attributes:

`matrix (np.ndarray)` - matrix representation of Pauli-Y gate.

```python
PauliY.matrix = [0+0j, 0-1j],
                [0+1j, 0+0j]
```

> ## *class* QC.QuantumGate.`PauliZ`()

*Rotation around z-axis of the bloch sphere by π radiains, mapping |1> to -|1>; known as the phase-flip.*

### Parameters:

`None`

### Attributes:

`matrix (np.ndarray)` - matrix representation of Pauli-Z gate.

```python
PauliY.matrix = [1+0j, 0+0j], 
                [0+0j, -1+0j]
```

> ## *class* QC.QuantumGate.`Hadamard`()

*Maps the basis states |0> to |+> and |1> to |->, creating a superposition state if given a computation basis state.*

### Parameters:

`None`

### Attributes:

`matrix (np.ndarray)` - matrix representation of Hadamard gate.

```python
Hadamard.matrix = ([1,  1] 
                   [1, -1]) * (1/sqrt(2))
```

> ## *class* QC.QuantumGate.`CNot`(*inverse=False*)

*Controlled gate acts on two or more qubits, performing the NOT operation of the target qubit only if the control qubits are |1>, can act as a quantum regiester and is used to entangle and disentangle Bell states.*

### Parameters:

`inverse (bool)` - if the gate is an inverse, with the target being above the control.

### Attributes:

`matrix (np.ndarray)` - matrix representation of CNOT gate.

```python
# regular
CNot.matrix = [1+0j, 0+0j, 0+0j, 0+0j],
              [0+0j, 1+0j, 0+0j, 0+0j],
              [0+0j, 0+0j, 0+0j, 1+0j],
              [0+0j, 0+0j, 1+0j, 0+0j]
# inverse
CNot.matrix = [1+0j, 0+0j, 0+0j, 0+0j],
              [0+0j, 0+0j, 0+0j, 1+0j],
              [0+0j, 0+0j, 1+0j, 0+0j],
              [0+0j, 1+0j, 0+0j, 0+0j] 
```

> ## *class* QC.QuantumGate.`Swap`()

*Swaps two qubits, with respect to the basis |00>, |01>, |10>, and |11>.*

### Parameters:

`None`

### Attributes:

`matrix (np.ndarray)` - matrix representation of SWAP gate.

```python
Swap.matrix = [1+0j, 0+0j, 0+0j, 0+0j],
              [0+0j, 0+0j, 1+0j, 0+0j],
              [0+0j, 1+0j, 0+0j, 0+0j],
              [0+0j, 0+0j, 0+0j, 1+0j]
```

> ## *class* QC.QuantumGate.`Toffoli`()

*Universal reversible logic gate, known as the “controlled-controlled-NOT” gate; if the two control bits are set to 1, it will invert the target.*

### Parameters:

`None`

### Attributes:

`matrix (np.ndarray)` - matrix representation of Toffoli gate.

```python
Toffoli.matrix = [1+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j],
                 [0+0j, 1+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j],
                 [0+0j, 0+0j, 1+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j],
                 [0+0j, 0+0j, 0+0j, 1+0j, 0+0j, 0+0j, 0+0j, 0+0j],
                 [0+0j, 0+0j, 0+0j, 0+0j, 1+0j, 0+0j, 0+0j, 0+0j],
                 [0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 1+0j, 0+0j, 0+0j],
                 [0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 1+0j],
                 [0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 1+0j, 0+0j]
```

> ## *class* QC.QuantumGate.`Phase`(*theta=numpy.pi/2*)

*Applies a rotation of theta around the z-axis.*

### Parameters:

`theta (float)` default: `numpy.pi/2` -  angle of rotation around z-axis.

### Attributes:

`matrix (np.ndarray)` - matrix representation of Phase gate.

```python
Phase.matrix = [1+0j, 0+0j],
	       [0+0j, numpy.exp(0+1j * theta)]
```

> ## *class* QC.QuantumGate.`S`()

*Equivalent to a pi/2 rotation around the z-axis.*

### Parameters:

`None`

### Attributes:

`matrix (np.ndarray)` - matrix representation of S gate.

```python
S.matrix = [1+0j, 0+0j],
           [0+0j, 0+1j]
```

> ## *class* QC.QuantumGate.`Sdg`()

*Inverse of S gate; a -pi/2 rotation around the z-axis.*

### Parameters:

`None`

### Attributes:

`matrix (np.ndarray)` - matrix representation of an inverse S gate.

```python
Sdg.matrix = [1+0j, 0+0j],
             [0+0j, 0-1j]
```

> ## *class* QC.QuantumGate.`T`()

*Square of S gate; where T = S^2.*

### Parameters:

`None`

### Attributes:

`matrix (np.ndarray)` - matrix representation of a T gate.

```python
T.matrix = [1+0j, 0+0j],
           [0+0j, numpy.exp((0+1j * numpy.pi) / 4)]
```

> ## *class* QC.QuantumGate.`Tdg`()

*Inverse of T gate.*

### Parameters:

`None`

### Attributes:

`matrix (np.ndarray)` - matrix representation of a inverse of T gate.

```python
Tdg.matrix = [1+0j, 0+0j],
             [0+0j, numpy.exp((0-1j * numpy.pi) / 4)]
```

> ## *class* QC.QuantumGate.`Rz`(*theta=numpy.pi/2*)

*Rotation of qubit around the z-axis.*

### Parameters:

`theta (float)` default: `numpy.pi/2` -  angle of rotation around z-axis.

### Attributes:

`matrix (np.ndarray)` - matrix representation of an Rz gate.

```python
Rz.matrix = [numpy.exp((0-1j * (theta / 2))), 0+0j],
            [0+0j, numpy.exp(0+1j * (theta / 2))]
```

> ## *class* QC.QuantumGate.`Rx`(*theta=numpy.pi/2*)

*Rotation of qubit around the x-axis.*

### Parameters:

`theta (float)` default: `numpy.pi/2` -  angle of rotation around x-axis.

### Attributes:

`matrix (np.ndarray)` - matrix representation of an Rx gate.

```python
Rx.matrix = [numpy.cos(theta / 2), 0-1j * numpy.sin(theta / 2)],
            [0-1j * numpy.sin(theta / 2), numpy.cos(theta / 2)]
```

> ## *class* QC.QuantumGate.`Ry`(*theta=numpy.pi/2*)

*Rotation of qubit around the y-axis.*

### Parameters:

`theta (float)`default: `numpy.pi/2` -  angle of rotation around y-axis.

### Attributes:

`matrix (np.ndarray)` - matrix representation of an Ry gate.

```python
Ry.matrix = [numpy.cos(theta / 2), -1 * numpy.sin(theta / 2)],
            [numpy.sin(theta / 2), numpy.cos(theta / 2)]
```

> ## *class* QC.QuantumGate.`Sx`()

*Rotation around the x-axis by 90 degrees in the counter-clockwise direction. Also known as the “square-root X gate” due to the fact that applying the SX gate twice results in an X gate.*

### Parameters:

`None`

### Attributes:

`matrix (np.ndarray)` - matrix representation of an Sx gate.

```python
Sx.matrix = [1+1j, 1-1j], 
            [1-1j, 1+1j]]) * (1 / 2)
```

> ## *class* QC.QuantumGate.`Sxdg`()

*Inverse of the Sx gate.*

### Parameters:

`None`

### Attributes:

`matrix (np.ndarray)` - matrix representation of an inverse Sx gate.

```python
Sxdg.matrix = [1-1j, 1+1j], 
              [1+1j, 1-1j]]) * (1 / 2)
```

> ## *class* QC.QuantumGate.`U`(*theta=numpy.pi/2, phi=numpy.pi/2, lmbda=numpy.pi/2*)

*Rotation of qubit with respect to theta, phi, and lambda, in Euler angles.*

### Parameters:

`theta (float)` default: `numpy.pi/2` -  angle of rotation around Euler angle theta.

`phi (float)` default: `numpy.pi/2` -  angle of rotation around Euler angle phi.

`lmbda (float)` default: `numpy.pi/2` -  angle of rotation around Eulear angle lambda.

### Attributes:

`matrix (np.ndarray)` - matrix representation of a U gate.

```python
U.matrix = [numpy.cos(theta / 2), -1 * numpy.exp(0+1j * lmbda) * numpy.sin(theta / 2)], 
           [numpy.exp(0+1j * phi) * numpy.sin(theta / 2), numpy.exp(0+1j * (lmbda + phi)) * numpy.cos(theta / 2)]]
```

> ## *class* QC.QuantumGate.`Rxx`(*theta=numpy.pi/2*)

*Rotation about XX, maximally entangling at theta = pi/2.*

### Parameters:

`theta (float)` default: `numpy.pi/2` -  angle of rotation around XX.

### Attributes:

`matrix (np.ndarray)` - matrix representation of an Rxx gate.

```python
Rxx.matrix = [numpy.cos(theta / 2), 0+0j, 0+0j, 0-1j * numpy.sin(theta / 2)],
             [0+0j, numpy.cos(theta / 2), 0-1j * numpy.sin(theta / 2), 0+0j],
             [0+0j, 0-1j * numpy.sin(theta / 2), numpy.cos(theta / 2), 0+0j],
             [0-1j * numpy.sin(theta / 2), 0+0j, 0+0j, numpy.cos(theta / 2)]
```

> ## *class* QC.QuantumGate.`Rzz`(*theta=numpy.pi/2*)

*Rotation about ZZ, maximally entangling at theta = pi/2.*

### Parameters:

`theta (float)` default: `numpy.pi/2` -  angle of rotation around ZZ.

### Attributes:

`matrix (np.ndarray)` - matrix representation of an Rzz gate.

```python
Rzz.matrix = [numpy.exp(0-1j * (theta / 2)), 0+0j, 0+0j, 0+0j],
             [0+0j, numpy.exp(0+1j * (theta / 2)), 0+0j, 0+0j],
             [0+0j, 0+0j, numpy.exp(0+1j * (theta / 2)), 0+0j],
             [0+0j, 0+0j, 0+0j, numpy.exp(0-1j * (theta / 2))]
```

> ## *class* QC.QuantumGate.`Cr`(*theta=numpy.pi/2*)

*Controlled phase shift rotation in theta radians; generalization of Cz gate.*

### Parameters:

`theta (float)` default: `numpy.pi/2` -  angle of rotation in theta radians.

### Attributes:

`matrix (np.ndarray)` - matrix representation of an Cr gate.

```python
Cz.matrix = [1+0j, 0+0j, 0+0j, 0+0j],
            [0+0j, 1+0j, 0+0j, 0+0j],
            [0+0j, 0+0j, 1+0j, 0+0j],
            [0+0j, 0+0j, 0+0j, numpy.exp(theta * 0+1j)]
```

> ## *class* QC.QuantumGate.`Cz`(*theta=numpy.pi/2*)

*Controlled phase shift rotation in theta radians.*

### Parameters:

`theta (float)` default: `numpy.pi/2` -  angle of rotation in theta radians.

### Attributes:

`matrix (np.ndarray)` - matrix representation of an Cz gate.

```python
Cz.matrix = [1+0j, 0+0j, 0+0j, 0+0j],
            [0+0j, 1+0j, 0+0j, 0+0j],
            [0+0j, 0+0j, 1+0j, 0+0j],
            [0+0j, 0+0j, 0+0j, -1+0j]
```
---
# Quantum Circuit
> ## *class* QC.QuantumCircuit.`QuantumCircuit`(*qubits*, *little_endian=False*, *prep='z'*)

*Quantum circuit that represents the state of a quantum system and performs operations on select qubits.*

### Parameters:

`qubits (int)` - number of qubits in the circuit.

`little_endian (bool)` default: `False` - order of qubits and tensor products.

`prep (char)` options: [`z`, `y`, `x`] - initial direction of the qubits' phase angle.

### Attributes:

`None`

> ## QuantumCircuit.`circuit`()

*Dictionary representation of the circuit*

### Parameters:

`None`

### Returns:

`circuit (dict[int, list[str]])` - key: qubit; value: name of gate.

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(2)

qc.hadamard(0)
qc.cnot(0, 1)
qc.hadamard(0)

print(qc.circuit())

# {0: ['hadamard', 'cnot_control', 'hadamard'], 
#  1: ['cnot_target']}
```

> ## QuantumCircuit.`amplitude`(*round=3*)

*Returns vector of all possible amplitudes for the quantum circuit*

### Parameters:

`round (int)` - rounding the amplitude to the nearest `round`

### Returns:

`amplitude (numpy.ndarray[float16])` - amplitude of the quantum circuit.

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(2)

qc.hadamard(0)
qc.cnot(0, 1)
qc.hadamard(0)

print(qc.amplitude())

# [[0.5]
# [0.5]
# [0.5]
# [0.5]]
```

> ## QuantumCircuit.`phaseAngle`(*round=2*, *radian=True*)

*Calculates possible phase angles for the quantum circuit*

### Parameters:

`round (int)` - rounding the amplitude to the nearest `round`

`radian (bool)` - whether or not the values are in radians or degrees.

### Returns:

`phase_angle (numpy.ndarray)` - array of qubit's phase angle.

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(2)

qc.hadamard(0)
qc.cnot(0, 1)
qc.hadamard(0)

print(qc.phaseAngle())

# [[0.        ]
# [0.         ]
# [0.         ]
# [3.14159265]]
```

> ## QuantumCircuit.`state`(*round=3*)

*Returns state of the quantum circuit.*

### Parameters:

`round (int)` - rounding the state to the nearest `round`

### Returns:

`_state (numpy.ndarray)` - array of quantum circuit's state.

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(2)

qc.hadamard(0)
qc.cnot(0, 1)

print(qc.state())

# [[0.707+0.j]
# [0.   +0.j]
# [0.   +0.j]
# [0.707+0.j]]
```

> ## QuantumCircuit.`probabilities`(*round=3*)

*Returns probabilitiy of the qubits within the quantum circuit.*

### Parameters:

`round (int)` - rounding the probabilities to the nearest `round`

### Returns:

`prob_matrix (numpy.ndarray)` - array of quantum circuit's probabilities.

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(2)

qc.hadamard(0)

qc.cnot(0, 1)

print(qc.probabilities())

# [0.5 0.  0.  0.5]
```

> ## QuantumCircuit.`measure`()

*Collapses the state based on the quantum circuit's probabilities.*

### Parameters:

`None`

### Returns:

`final_state (numpy.ndarray)` - array of quantum circuit's measurement.

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(2)

qc.hadamard(0)
qc.cnot(0, 1)

print(qc.measure())

# ~Results may vary~
# 00
```

> ## QuantumCircuit.`reverse`()

*Reverses the quantum circuit's values.*

### Parameters:

`None`

### Returns:

`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(2)

qc.hadamard(0)

print(qc.state())

qc.reverse()

print(qc.state())

# [[0.707+0.j]
# [0.   +0.j]
# [0.707+0.j]
# [0.   +0.j]]
 
# [[0.   +0.j]
# [0.707+0.j]
# [0.   +0.j]
# [0.707+0.j]]
```
> ## QuantumCircuit.`toffoli`(*control_1*, *control_2*, *target*)

*A 3-qubit quantum gate that takes in two control qubits and one target qubit.*

### Parameters:

`control_1 (int)` - first control qubit.

`control_2 (int)` - second control qubit.

`target (int)` - target qubit.


### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(3)

qc.hadamard(0)

qc.hadamard(1)

qc.toffoli(0,1,2)

print(qc.state())

# [[0.5+0.j]
# [0. +0.j]
# [0.5+0.j]
# [0. +0.j]
# [0.5+0.j]
# [0. +0.j]
# [0. +0.j]
# [0.5+0.j]]
```

> ## QuantumCircuit.`rccx`(*control_1*, *control_2*, *target*)

*A 3-qubit quantum gate that takes in two control qubits and one target qubit.*

### Parameters:

`control_1 (int)` - first control qubit.

`control_2 (int)` - second control qubit.

`target (int)` - target qubit.


### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit
qc = QuantumCircuit(3)

qc.hadamard(0)

qc.hadamard(1)

qc.rccx(0,1,2)

print(qc.state())

# [[ 0.5-0.j ]
# [ 0. +0.j ]
# [ 0.5-0.j ]
# [ 0. +0.j ]
# [ 0.5-0.j ]
# [ 0. +0.j ]
# [-0. +0.j ]
# [ 0. +0.5j]]
```

> ## QuantumCircuit.`rc3x`(*a*, *b*, *c*, *d*)

*A 4-qubit quantum gate that takes in 4 unique qubits.*

### Parameters:

`a (int)` - first input qubit.

`b (int)` - second input qubit.

`c (int)` - third input qubit.

`d (int)` - fourth input qubit.


### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit
qc = QuantumCircuit(4)

qc.hadamard(0)

qc.hadamard(1)

qc.hadamard(2)

qc.rc3x(0,1,2)

print(qc.state())

# [[ 0.354-0.j   ]
# [ 0.   +0.j   ]
# [ 0.354-0.j   ]
# [ 0.   +0.j   ]
# [ 0.354-0.j   ]
# [ 0.   +0.j   ]
# [ 0.354-0.j   ]
# [ 0.   +0.j   ]
# [ 0.354-0.j   ]
# [ 0.   +0.j   ]
# [ 0.354-0.j   ]
# [ 0.   +0.j   ]
# [ 0.   +0.354j]
# [-0.   +0.j   ]
# [ 0.   -0.j   ]
# [-0.354+0.j   ]]
```
> ## QuantumCircuit.`cnot`(*control*, *target*)

*A 2-qubit quantum gate that takes in a control qubit and one target qubit.*

### Parameters:

`control (int)` - control qubit.

`target (int)` - target qubit.


### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit
qc = QuantumCircuit(2)

qc.hadamard(0)

qc.cnot(0,1)

print(qc.state())

# [[0.707+0.j]
# [0.   +0.j]
# [0.   +0.j]
# [0.707+0.j]]
```

> ## QuantumCircuit.`cr`(*control*, *target*)

*A 2-qubit quantum gate that takes in a control qubit and one target qubit.*

### Parameters:

`control (int)` - control qubit.

`target (int)` - target qubit.


### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit
qc = QuantumCircuit(2)

qc.hadamard(0)

qc.cr(0,1)

print(qc.state())

# [[0.707+0.j]
# [0.   +0.j]
# [0.707+0.j]
# [0.   +0.j]]
```


> ## QuantumCircuit.`cz`(*control*, *target*)

*A 2-qubit quantum gate that takes in a control qubit and one target qubit.*

### Parameters:

`control (int)` - control qubit.

`target (int)` - target qubit.


### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit
qc = QuantumCircuit(2)

qc.hadamard(0)

qc.cz(0,1)

print(qc.state())

# [[0.707+0.j]
# [0.   +0.j]
# [0.707+0.j]
# [0.   +0.j]]
```

> ## QuantumCircuit.`swap`(*qubit_1*, *qubit_2*)

*A 2-qubit quantum gate that takes in 2 qubits to swap there properties.*

### Parameters:

`qubit_1 (int)` - first qubit to swap.

`qubit_2 (int)` - second qubit to swap.


### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit
qc = QuantumCircuit(2)

qc.hadamard(0)

qc.swap(0,1)

print(qc.state())

# [[0.707+0.j]
# [0.707+0.j]
# [0.   +0.j]
# [0.   +0.j]]
```

> ## QuantumCircuit.`rxx`(*qubit_1*, *qubit_2*, *theta=numpy.pi/2*)

*A 2-qubit quantum gate that takes in two qubits and a representation of theta to initialize in the quantum state.*

### Parameters:

`qubit_1 (int)` - first qubit input.

`qubit_2 (int)` - second qubit input.

`theta (float)` default: `numpy.pi/2` -  angle of rotation around z-axis.

### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit
qc = QuantumCircuit(2)

qc.hadamard(0)

qc.rxx(0,1)

print(qc.state())

# [[0.5+0.j ]
# [0. -0.5j]
# [0.5+0.j ]
# [0. -0.5j]]
```

> ## QuantumCircuit.`rzz`(*qubit_1*, *qubit_2*, *theta=numpy.pi/2*)

*A 2-qubit quantum gate that takes in two qubits and a representation of theta to initialize in the quantum state.*

### Parameters:

`qubit_1 (int)` - first qubit input.

`qubit_2 (int)` - second qubit input.

`theta (float)` default: `numpy.pi/2` -  angle of rotation around z-axis.


### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit
qc = QuantumCircuit(2)

qc.hadamard(0)

qc.rxx(0,1)

print(qc.state())

# [[0.5+0.j ]
# [0. -0.5j]
# [0.5+0.j ]
# [0. -0.5j]]
```

> ## QuantumCircuit.`customControlPhase`(*control*, *target*, *custom_matrix*)

*Used to insert single qubit based quantum gates to have a control qubit apart of it and committing to the quantum state.*

### Parameters:

`control (int)` - control qubit for given matrix.

`target (int)` - target qubit for given matrix.

`custom_matrix (np.array)` -  matrix to be applied to the quantum circuit.


### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

from QCpy.QuantumGate import PauliX

qc = QuantumCircuit(2)

qc.hadamard(0)

qc.customControlPhase(0,1, PauliX().matrix)

print(qc.state())

# [[0.707+0.j]
# [0.   +0.j]
# [0.   +0.j]
# [0.707+0.j]]
```

> ## QuantumCircuit.`identity`(*qubit*)

*Used to confirm value that a qubit is representing and does nothing to manipulate the value of such qubit.*

### Parameters:

`qubit (int)` - the qubit to have the identity gate be applied to the quantum wire.

### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(2)

qc.identity(0)

print(qc.state())

# [[1.+0.j]
# [0.+0.j]
# [0.+0.j]
# [0.+0.j]]
```

> ## QuantumCircuit.`x`(*qubit*)

*Used to invert the value of what a qubit is representing.*

### Parameters:

`qubit (int)` - the qubit to have the Pauli-X gate be applied to the quantum wire.

### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(2)

qc.x(0)

print(qc.state())

# [[0.+0.j]
# [0.+0.j]
# [1.+0.j]
# [0.+0.j]]
```


> ## QuantumCircuit.`hadmard`(*qubit*)

*Used to put a given qubit into superposition.*

### Parameters:

`qubit (int)` - the qubit to have the Hadamard gate be applied to the quantum wire.

### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(2)

qc.hadamard(0)

print(qc.state())

# [[0.707+0.j]
# [0.   +0.j]
# [0.707+0.j]
# [0.   +0.j]]
```

> ## QuantumCircuit.`y`(*qubit*)

*Changes the state of a qubit by pi around the y-axis of a Bloch Sphere.*

### Parameters:

`qubit (int)` - the qubit to have the Pauli-Y gate be applied to the quantum wire.

### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(2)

qc.y(0)

print(qc.state())

# [[0.+0.j]
# [0.+0.j]
# [0.+1.j]
# [0.+0.j]]
```


> ## QuantumCircuit.`z`(*qubit*)

*Changes the state of a qubit by pi around the z-axis of a Bloch Sphere.*

### Parameters:

`qubit (int)` - the qubit to have the Pauli-Z gate be applied to the quantum wire.

### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(2)

qc.hadamard(0)

qc.z(0)

print(qc.state())

# [[ 0.707+0.j]
# [ 0.   +0.j]
# [-0.707+0.j]
# [ 0.   +0.j]]
```

> ## QuantumCircuit.`phase`(*qubit*, *theta=numpy.pi/2*)

*Commits to a rotation around the z-axis based off of the inputted theta value.*

### Parameters:

`qubit (int)` - the qubit to have the Phase gate be applied to the quantum wire.

`theta (float)` default: `numpy.pi/2` -  angle of rotation around z-axis.

### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(2)

qc.hadamard(0)

qc.phase(0)

print(qc.state())

# [[0.707+0.j   ]
# [0.   +0.j   ]
# [0.   +0.707j]
# [0.   +0.j   ]]
```

> ## QuantumCircuit.`s`(*qubit*)

*Is a Phase gate where the inputted theta value is given as a constant of theta = pi / 2.*

### Parameters:

`qubit (int)` - the qubit to have the Pauli-Z gate be applied to the quantum wire.

### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(2)

qc.hadamard(0)

qc.s(0)

print(qc.state())

# [[0.707+0.j   ]
# [0.   +0.j   ]
# [0.   +0.707j]
# [0.   +0.j   ]]
```

> ## QuantumCircuit.`sdg`(*qubit*)

*Is a Phase gate and inverse of the S gate where the inputted theta value is given as a constant of theta = -pi / 2.*

### Parameters:

`qubit (int)` - the qubit to have the Sdg gate be applied to the quantum wire.

### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(2)

qc.hadamard(0)

qc.sdg(0)

print(qc.state())

# [[0.707+0.j   ]
# [0.   +0.j   ]
# [0.   -0.707j]
# [0.   +0.j   ]]
```

> ## QuantumCircuit.`t`(*qubit*)

*T gate is a special use case gate that in implemented from the P Gate.*

### Parameters:

`qubit (int)` - the qubit to have the T gate be applied to the quantum wire.

### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(2)

qc.hadamard(0)

qc.t(0)

print(qc.state())

# [[0.707+0.j ]
# [0.   +0.j ]
# [0.5  +0.5j]
# [0.   +0.j ]]
```

> ## QuantumCircuit.`tdg`(*qubit*)

*Tdg gate is a special use case gate that in implemented from the P Gate and is the inverse of the T gate.*

### Parameters:

`qubit (int)` - the qubit to have the Tdg gate be applied to the quantum wire.

### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(2)

qc.hadamard(0)

qc.tdg(0)

print(qc.state())

# [[0.707+0.j ]
# [0.   +0.j ]
# [0.5  -0.5j]
# [0.   +0.j ]]
```

> ## QuantumCircuit.`rz`(*qubit*, *theta=numpy.pi/2*)

*RZ gate commits a rotation around the z-axis for a qubit.*

### Parameters:

`qubit (int)` - the qubit to have the Rz gate be applied to the quantum wire.

`theta (float)` default: `numpy.pi/2` -  angle of rotation around z-axis.

### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(2)

qc.hadamard(0)

qc.rz(0)

print(qc.state())

# [[0.5-0.5j]
# [0. +0.j ]
# [0.5+0.5j]
# [0. +0.j ]]
```

> ## QuantumCircuit.`ry`(*qubit*, *theta=numpy.pi/2*)

*RY gate commits a rotation around the y-axis for a qubit.*

### Parameters:

`qubit (int)` - the qubit to have the Ry gate be applied to the quantum wire.

`theta (float)` default: `numpy.pi/2` -  angle of rotation around y-axis.

### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(2)

qc.ry(0)

print(qc.state())

# [[0.707+0.j]
# [0.   +0.j]
# [0.707+0.j]
# [0.   +0.j]]
```

> ## QuantumCircuit.`rx`(*qubit*, *theta=numpy.pi/2*)

*RX gate commits a rotation around the x-axis for a qubit.*

### Parameters:

`qubit (int)` - the qubit to have the Ry gate be applied to the quantum wire.

`theta (float)` default: `numpy.pi/2` -  angle of rotation around x-axis.

### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(2)

qc.rx(0)

print(qc.state())

# [[0.707+0.j   ]
# [0.   +0.j   ]
# [0.   -0.707j]
# [0.   +0.j   ]]
```

> ## QuantumCircuit.`sx`(*qubit*)

*SX gate is the square root of the Inverse gate (X, PauliX Gate).*

### Parameters:

`qubit (int)` - the qubit to have the Sx gate be applied to the quantum wire.

### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(2)

qc.sx(0)

print(qc.state())

# [[0.5+0.5j]
# [0. +0.j ]
# [0.5-0.5j]
# [0. +0.j ]]
```

> ## QuantumCircuit.`sxdg`(*qubit*)

*SXDG gate is the negative square root of the Inverse gate (X, PauliX Gate) and inverse of the SX gate.*

### Parameters:

`qubit (int)` - the qubit to have the SXdg gate be applied to the quantum wire.

### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(2)

qc.sxdg(0)

print(qc.state())

# [[0.5-0.5j]
# [0. +0.j ]
# [0.5+0.5j]
# [0. +0.j ]]
```

> ## QuantumCircuit.`u`(*qubit*, *theta=numpy.pi/2*, *phi=numpy.pi/2*, *lmbda=numpy.pi/2*)

*U gate is given three inputs (theta, phi, and lambda) that allow the inputs to manipulate the base matrix to allow for the position of the enacted qubit around the bloch sphere representation.*

### Parameters:

`qubit (int)` - the qubit to have the U gate be applied to the quantum wire.

`theta (float)` default: `numpy.pi/2` - angle representation to rotate the qubit's representation.

`phi (float)` default: `numpy.pi/2` -  angle representation to rotate the qubit's representation.

`lmbda (float)` default: `numpy.pi/2` -  angle representation to rotate the qubit's representation.

### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

qc = QuantumCircuit(2)

qc.u(0)

print(qc.state())

# [[0.5-0.5j]
# [0. +0.j ]
# [0.5+0.5j]
# [0. +0.j ]]
```

> ## QuantumCircuit.`custom`(*qubit*, *custom_matrix*)

*Will take in a custom single qubit quantum gate and implement it on a qubit.*

### Parameters:

`qubit (int)` - the qubit to have the U gate be applied to the quantum wire.

`custom_matrix (np.array)` -  matrix to be applied to the quantum circuit.

### Returns:
`None`

### Example:

```python
from QCpy.QuantumCircuit import QuantumCircuit

from QCpy.QuantumGate import PauliX

qc = QuantumCircuit(2)

qc.custom(0, PauliX().matrix)

print(qc.state())

# [[0.+0.j]
# [0.+0.j]
# [1.+0.j]
# [0.+0.j]]
```

# Visualizer

*A collection of classes to visualize the quantum circuit*

> ## *class* QC.Visualizer.QSphere(*circuit*)

*Visualizes the quantum circuit as a q-sphere*

### Parameters:

`circuit` - the quantum circuit

### Attributes:

`None`

> ## QSphere.`makeSphere`(*path="qsphere.png"*, *save=True*, *show=True*, *darkmode=True*)

*Returns a Q-Sphere that plots a global visualization of the quantum states in a 3D global view*

### Parameters:

`path (str)` - name of the image to be saved

`save (bool)` - pass True for the graph to be saved

`show (bool)` - pass True for the sphere to be shown instead of saved

`darkmode (bool)` - pass True for darkmode, false for lightmode

### Returns:

`None`

### Example:

```python
from QuantumCircuit import *
from Visualizer import *

qc = QuantumCircuit(3)

qc.hadamard(0)
qc.hadamard(1)
qc.hadamard(2)

sphere_ex = QSphere(qc)
sphere_ex.makeSphere(save=False, show=True)
```
> ## *class* QC.Visualizer.StateVector(*circuit*)

*Visualizes the quantum circuit's quantum amplitutes using a bar graph*

### Parameters:

`circuit` - the quantum circuit

### Attributes:

`None`

> ## StateVector.`makeGraph`(*path="statevector.png"*, *save=True*, *show=True*, *darkmode=True*)

*Returns a graph that plots all the amplitudes of the qubits being measured*

### Parameters:

`path (str)` - name of the image to be saved

`save (bool)` - pass True for the graph to be saved

`show (bool)` - pass True for the graph to be shown instead of saved

`darkmode (bool)` - pass True for darkmode and false for lightmode

### Returns:

`None`

### Example:

```python
from QuantumCircuit import *
from Visualizer import *

qc = QuantumCircuit(3)

qc.hadamard(0)
qc.hadamard(1)
qc.hadamard(2)

stateVector_ex = StateVector(qc)
stateVector_ex.makeGraph(save=False, show=True)
```

> ## *class* QC.Visualizer.Probabilities(*circuit*)

*Visualizes the quantum circuit's qubits probability of being measured using a bar graph*

### Parameters:

`circuit` - the quantum circuit

### Attributes:

`None`

> ## Probabilities.`makeGraph`(*path="probabilities.png"*, *save=True*, *show=True*, *darkmode=True*)

*Returns a graph that plots all the probabilities of the qubits being measured*

### Parameters:

`path (str)` - name of the image to be saved

`save (bool)` - pass True for the graph to be saved

`show (bool)` - pass True for the graph to be shown instead of saved

`darkmode (bool)` - pass True for darkmode and false for lightmode

### Returns:

`None`

### Example:

```python
from QuantumCircuit import *
from Visualizer import *

qc = QuantumCircuit(3)

qc.hadamard(0)
qc.hadamard(1)
qc.hadamard(2)

probabilities_ex = Probabilities(qc)
probabilities_ex.makeGraph(save=False, show=True)
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/QCpyDevs/QCpy",
    "name": "QCpython",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "Quantum Computing,Visualization,Simulation,Linear Algebra,",
    "author": "Brennan Freeze, Paris Osuch, Aundre Barras, Soren Richenberg",
    "author_email": "freezebrennan@gmail.com, osuch@sonoma.edu, barras@sonoma.edu, richenbe@sonoma.edu",
    "download_url": "https://files.pythonhosted.org/packages/49/95/6e459b5edb4909536b642af73b20171a63e8da555bf773d72f86d3b44c5e/QCpython-1.0.tar.gz",
    "platform": null,
    "description": "# README.md\n\n# QCpy - A Quantum Computing Library for Python\n\nQCpy is an open source python library and collaborative project for flexible simulations and visualizations of quantum circuits. Designed by college students with students in mind, this library contains a powerful set of tools to teach computer scientists about the emerging discipline of quantum computing (QC).\n\n## Recommended Resources on Quantum Computing:\n\n- [Microsoft\u2019s Linear Algebra for Quantum Computing](https://learn.microsoft.com/en-us/azure/quantum/overview-algebra-for-quantum-computing)\n- [IBM\u2019s Quantum Computing: a field guide](https://quantum-computing.ibm.com/composer/docs/iqx/guide/)\n- [Wikipedia: Quantum Computing](https://en.wikipedia.org/wiki/Quantum_computing)\n\n---\n\n# Qubits\n\n> ## *class* QC.Qubit.`Qubit`(*initial_state=\u2019z\u2019*)\n\n*Object representation of a qubit.*\n\n### Parameters:\n\n`initial_state (chr)` - Character input for starting direction in the *x*, *y*, or *z* axis.\n\n### Attributes:\n\n`state (numpy.ndarray)` -  current state of qubit in matrix representation.\n\n---\n\n# Quantum Gates\n\n> ## *class* QC.QuantumGate.`Identity`()\n\n*Gate that does not modify the quantum state.*\n\n### Parameters:\n\n`None`\n\n### Attributes:\n\n`matrix (np.ndarray)` - matrix representation of Identity gate.\n\n```python\nIdentity.matrix = [1+0j, 0+0j], \n\t          [0+0j, 1+0j]\n```\n\n> ## *class* QC.QuantumGate.`PauliX`()\n\n*Quantum equivalent of the NOT gate in classical computing with respect to the standard basis |0>, |1>.*\n\n### Parameters:\n\n`None`\n\n### Attributes:\n\n`matrix (np.ndarray)` - matrix representation of Pauli-X gate.\n\n```python\nPauliX.matrix = [0+0j, 1+0j], \n\t        [1+0j, 0+0j]\n```\n\n> ## *class* QC.QuantumGate.`PauliY`()\n\n*Rotation around y-axis of the bloch sphere by \u03c0 radiains, mapping |0> to i|1> and |1> to -i|0>.*\n\n### Parameters:\n\n`None`\n\n### Attributes:\n\n`matrix (np.ndarray)` - matrix representation of Pauli-Y gate.\n\n```python\nPauliY.matrix = [0+0j, 0-1j],\n                [0+1j, 0+0j]\n```\n\n> ## *class* QC.QuantumGate.`PauliZ`()\n\n*Rotation around z-axis of the bloch sphere by \u03c0 radiains, mapping |1> to -|1>; known as the phase-flip.*\n\n### Parameters:\n\n`None`\n\n### Attributes:\n\n`matrix (np.ndarray)` - matrix representation of Pauli-Z gate.\n\n```python\nPauliY.matrix = [1+0j, 0+0j], \n                [0+0j, -1+0j]\n```\n\n> ## *class* QC.QuantumGate.`Hadamard`()\n\n*Maps the basis states |0> to |+> and |1> to |->, creating a superposition state if given a computation basis state.*\n\n### Parameters:\n\n`None`\n\n### Attributes:\n\n`matrix (np.ndarray)` - matrix representation of Hadamard gate.\n\n```python\nHadamard.matrix = ([1,  1] \n                   [1, -1]) * (1/sqrt(2))\n```\n\n> ## *class* QC.QuantumGate.`CNot`(*inverse=False*)\n\n*Controlled gate acts on two or more qubits, performing the NOT operation of the target qubit only if the control qubits are |1>, can act as a quantum regiester and is used to entangle and disentangle Bell states.*\n\n### Parameters:\n\n`inverse (bool)` - if the gate is an inverse, with the target being above the control.\n\n### Attributes:\n\n`matrix (np.ndarray)` - matrix representation of CNOT gate.\n\n```python\n# regular\nCNot.matrix = [1+0j, 0+0j, 0+0j, 0+0j],\n              [0+0j, 1+0j, 0+0j, 0+0j],\n              [0+0j, 0+0j, 0+0j, 1+0j],\n              [0+0j, 0+0j, 1+0j, 0+0j]\n# inverse\nCNot.matrix = [1+0j, 0+0j, 0+0j, 0+0j],\n              [0+0j, 0+0j, 0+0j, 1+0j],\n              [0+0j, 0+0j, 1+0j, 0+0j],\n              [0+0j, 1+0j, 0+0j, 0+0j] \n```\n\n> ## *class* QC.QuantumGate.`Swap`()\n\n*Swaps two qubits, with respect to the basis |00>, |01>, |10>, and |11>.*\n\n### Parameters:\n\n`None`\n\n### Attributes:\n\n`matrix (np.ndarray)` - matrix representation of SWAP gate.\n\n```python\nSwap.matrix = [1+0j, 0+0j, 0+0j, 0+0j],\n              [0+0j, 0+0j, 1+0j, 0+0j],\n              [0+0j, 1+0j, 0+0j, 0+0j],\n              [0+0j, 0+0j, 0+0j, 1+0j]\n```\n\n> ## *class* QC.QuantumGate.`Toffoli`()\n\n*Universal reversible logic gate, known as the \u201ccontrolled-controlled-NOT\u201d gate; if the two control bits are set to 1, it will invert the target.*\n\n### Parameters:\n\n`None`\n\n### Attributes:\n\n`matrix (np.ndarray)` - matrix representation of Toffoli gate.\n\n```python\nToffoli.matrix = [1+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j],\n                 [0+0j, 1+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j],\n                 [0+0j, 0+0j, 1+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j],\n                 [0+0j, 0+0j, 0+0j, 1+0j, 0+0j, 0+0j, 0+0j, 0+0j],\n                 [0+0j, 0+0j, 0+0j, 0+0j, 1+0j, 0+0j, 0+0j, 0+0j],\n                 [0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 1+0j, 0+0j, 0+0j],\n                 [0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 1+0j],\n                 [0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 1+0j, 0+0j]\n```\n\n> ## *class* QC.QuantumGate.`Phase`(*theta=numpy.pi/2*)\n\n*Applies a rotation of theta around the z-axis.*\n\n### Parameters:\n\n`theta (float)` default: `numpy.pi/2` -  angle of rotation around z-axis.\n\n### Attributes:\n\n`matrix (np.ndarray)` - matrix representation of Phase gate.\n\n```python\nPhase.matrix = [1+0j, 0+0j],\n\t       [0+0j, numpy.exp(0+1j * theta)]\n```\n\n> ## *class* QC.QuantumGate.`S`()\n\n*Equivalent to a pi/2 rotation around the z-axis.*\n\n### Parameters:\n\n`None`\n\n### Attributes:\n\n`matrix (np.ndarray)` - matrix representation of S gate.\n\n```python\nS.matrix = [1+0j, 0+0j],\n           [0+0j, 0+1j]\n```\n\n> ## *class* QC.QuantumGate.`Sdg`()\n\n*Inverse of S gate; a -pi/2 rotation around the z-axis.*\n\n### Parameters:\n\n`None`\n\n### Attributes:\n\n`matrix (np.ndarray)` - matrix representation of an inverse S gate.\n\n```python\nSdg.matrix = [1+0j, 0+0j],\n             [0+0j, 0-1j]\n```\n\n> ## *class* QC.QuantumGate.`T`()\n\n*Square of S gate; where T = S^2.*\n\n### Parameters:\n\n`None`\n\n### Attributes:\n\n`matrix (np.ndarray)` - matrix representation of a T gate.\n\n```python\nT.matrix = [1+0j, 0+0j],\n           [0+0j, numpy.exp((0+1j * numpy.pi) / 4)]\n```\n\n> ## *class* QC.QuantumGate.`Tdg`()\n\n*Inverse of T gate.*\n\n### Parameters:\n\n`None`\n\n### Attributes:\n\n`matrix (np.ndarray)` - matrix representation of a inverse of T gate.\n\n```python\nTdg.matrix = [1+0j, 0+0j],\n             [0+0j, numpy.exp((0-1j * numpy.pi) / 4)]\n```\n\n> ## *class* QC.QuantumGate.`Rz`(*theta=numpy.pi/2*)\n\n*Rotation of qubit around the z-axis.*\n\n### Parameters:\n\n`theta (float)` default: `numpy.pi/2` -  angle of rotation around z-axis.\n\n### Attributes:\n\n`matrix (np.ndarray)` - matrix representation of an Rz gate.\n\n```python\nRz.matrix = [numpy.exp((0-1j * (theta / 2))), 0+0j],\n            [0+0j, numpy.exp(0+1j * (theta / 2))]\n```\n\n> ## *class* QC.QuantumGate.`Rx`(*theta=numpy.pi/2*)\n\n*Rotation of qubit around the x-axis.*\n\n### Parameters:\n\n`theta (float)` default: `numpy.pi/2` -  angle of rotation around x-axis.\n\n### Attributes:\n\n`matrix (np.ndarray)` - matrix representation of an Rx gate.\n\n```python\nRx.matrix = [numpy.cos(theta / 2), 0-1j * numpy.sin(theta / 2)],\n            [0-1j * numpy.sin(theta / 2), numpy.cos(theta / 2)]\n```\n\n> ## *class* QC.QuantumGate.`Ry`(*theta=numpy.pi/2*)\n\n*Rotation of qubit around the y-axis.*\n\n### Parameters:\n\n`theta (float)`default: `numpy.pi/2` -  angle of rotation around y-axis.\n\n### Attributes:\n\n`matrix (np.ndarray)` - matrix representation of an Ry gate.\n\n```python\nRy.matrix = [numpy.cos(theta / 2), -1 * numpy.sin(theta / 2)],\n            [numpy.sin(theta / 2), numpy.cos(theta / 2)]\n```\n\n> ## *class* QC.QuantumGate.`Sx`()\n\n*Rotation around the x-axis by 90 degrees in the counter-clockwise direction. Also known as the \u201csquare-root X gate\u201d due to the fact that applying the SX gate twice results in an X gate.*\n\n### Parameters:\n\n`None`\n\n### Attributes:\n\n`matrix (np.ndarray)` - matrix representation of an Sx gate.\n\n```python\nSx.matrix = [1+1j, 1-1j], \n            [1-1j, 1+1j]]) * (1 / 2)\n```\n\n> ## *class* QC.QuantumGate.`Sxdg`()\n\n*Inverse of the Sx gate.*\n\n### Parameters:\n\n`None`\n\n### Attributes:\n\n`matrix (np.ndarray)` - matrix representation of an inverse Sx gate.\n\n```python\nSxdg.matrix = [1-1j, 1+1j], \n              [1+1j, 1-1j]]) * (1 / 2)\n```\n\n> ## *class* QC.QuantumGate.`U`(*theta=numpy.pi/2, phi=numpy.pi/2, lmbda=numpy.pi/2*)\n\n*Rotation of qubit with respect to theta, phi, and lambda, in Euler angles.*\n\n### Parameters:\n\n`theta (float)` default: `numpy.pi/2` -  angle of rotation around Euler angle theta.\n\n`phi (float)` default: `numpy.pi/2` -  angle of rotation around Euler angle phi.\n\n`lmbda (float)` default: `numpy.pi/2` -  angle of rotation around Eulear angle lambda.\n\n### Attributes:\n\n`matrix (np.ndarray)` - matrix representation of a U gate.\n\n```python\nU.matrix = [numpy.cos(theta / 2), -1 * numpy.exp(0+1j * lmbda) * numpy.sin(theta / 2)], \n           [numpy.exp(0+1j * phi) * numpy.sin(theta / 2), numpy.exp(0+1j * (lmbda + phi)) * numpy.cos(theta / 2)]]\n```\n\n> ## *class* QC.QuantumGate.`Rxx`(*theta=numpy.pi/2*)\n\n*Rotation about XX, maximally entangling at theta = pi/2.*\n\n### Parameters:\n\n`theta (float)` default: `numpy.pi/2` -  angle of rotation around XX.\n\n### Attributes:\n\n`matrix (np.ndarray)` - matrix representation of an Rxx gate.\n\n```python\nRxx.matrix = [numpy.cos(theta / 2), 0+0j, 0+0j, 0-1j * numpy.sin(theta / 2)],\n             [0+0j, numpy.cos(theta / 2), 0-1j * numpy.sin(theta / 2), 0+0j],\n             [0+0j, 0-1j * numpy.sin(theta / 2), numpy.cos(theta / 2), 0+0j],\n             [0-1j * numpy.sin(theta / 2), 0+0j, 0+0j, numpy.cos(theta / 2)]\n```\n\n> ## *class* QC.QuantumGate.`Rzz`(*theta=numpy.pi/2*)\n\n*Rotation about ZZ, maximally entangling at theta = pi/2.*\n\n### Parameters:\n\n`theta (float)` default: `numpy.pi/2` -  angle of rotation around ZZ.\n\n### Attributes:\n\n`matrix (np.ndarray)` - matrix representation of an Rzz gate.\n\n```python\nRzz.matrix = [numpy.exp(0-1j * (theta / 2)), 0+0j, 0+0j, 0+0j],\n             [0+0j, numpy.exp(0+1j * (theta / 2)), 0+0j, 0+0j],\n             [0+0j, 0+0j, numpy.exp(0+1j * (theta / 2)), 0+0j],\n             [0+0j, 0+0j, 0+0j, numpy.exp(0-1j * (theta / 2))]\n```\n\n> ## *class* QC.QuantumGate.`Cr`(*theta=numpy.pi/2*)\n\n*Controlled phase shift rotation in theta radians; generalization of Cz gate.*\n\n### Parameters:\n\n`theta (float)` default: `numpy.pi/2` -  angle of rotation in theta radians.\n\n### Attributes:\n\n`matrix (np.ndarray)` - matrix representation of an Cr gate.\n\n```python\nCz.matrix = [1+0j, 0+0j, 0+0j, 0+0j],\n            [0+0j, 1+0j, 0+0j, 0+0j],\n            [0+0j, 0+0j, 1+0j, 0+0j],\n            [0+0j, 0+0j, 0+0j, numpy.exp(theta * 0+1j)]\n```\n\n> ## *class* QC.QuantumGate.`Cz`(*theta=numpy.pi/2*)\n\n*Controlled phase shift rotation in theta radians.*\n\n### Parameters:\n\n`theta (float)` default: `numpy.pi/2` -  angle of rotation in theta radians.\n\n### Attributes:\n\n`matrix (np.ndarray)` - matrix representation of an Cz gate.\n\n```python\nCz.matrix = [1+0j, 0+0j, 0+0j, 0+0j],\n            [0+0j, 1+0j, 0+0j, 0+0j],\n            [0+0j, 0+0j, 1+0j, 0+0j],\n            [0+0j, 0+0j, 0+0j, -1+0j]\n```\n---\n# Quantum Circuit\n> ## *class* QC.QuantumCircuit.`QuantumCircuit`(*qubits*, *little_endian=False*, *prep='z'*)\n\n*Quantum circuit that represents the state of a quantum system and performs operations on select qubits.*\n\n### Parameters:\n\n`qubits (int)` - number of qubits in the circuit.\n\n`little_endian (bool)` default: `False` - order of qubits and tensor products.\n\n`prep (char)` options: [`z`, `y`, `x`] - initial direction of the qubits' phase angle.\n\n### Attributes:\n\n`None`\n\n> ## QuantumCircuit.`circuit`()\n\n*Dictionary representation of the circuit*\n\n### Parameters:\n\n`None`\n\n### Returns:\n\n`circuit (dict[int, list[str]])` - key: qubit; value: name of gate.\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(2)\n\nqc.hadamard(0)\nqc.cnot(0, 1)\nqc.hadamard(0)\n\nprint(qc.circuit())\n\n# {0: ['hadamard', 'cnot_control', 'hadamard'], \n#  1: ['cnot_target']}\n```\n\n> ## QuantumCircuit.`amplitude`(*round=3*)\n\n*Returns vector of all possible amplitudes for the quantum circuit*\n\n### Parameters:\n\n`round (int)` - rounding the amplitude to the nearest `round`\n\n### Returns:\n\n`amplitude (numpy.ndarray[float16])` - amplitude of the quantum circuit.\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(2)\n\nqc.hadamard(0)\nqc.cnot(0, 1)\nqc.hadamard(0)\n\nprint(qc.amplitude())\n\n# [[0.5]\n# [0.5]\n# [0.5]\n# [0.5]]\n```\n\n> ## QuantumCircuit.`phaseAngle`(*round=2*, *radian=True*)\n\n*Calculates possible phase angles for the quantum circuit*\n\n### Parameters:\n\n`round (int)` - rounding the amplitude to the nearest `round`\n\n`radian (bool)` - whether or not the values are in radians or degrees.\n\n### Returns:\n\n`phase_angle (numpy.ndarray)` - array of qubit's phase angle.\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(2)\n\nqc.hadamard(0)\nqc.cnot(0, 1)\nqc.hadamard(0)\n\nprint(qc.phaseAngle())\n\n# [[0.        ]\n# [0.         ]\n# [0.         ]\n# [3.14159265]]\n```\n\n> ## QuantumCircuit.`state`(*round=3*)\n\n*Returns state of the quantum circuit.*\n\n### Parameters:\n\n`round (int)` - rounding the state to the nearest `round`\n\n### Returns:\n\n`_state (numpy.ndarray)` - array of quantum circuit's state.\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(2)\n\nqc.hadamard(0)\nqc.cnot(0, 1)\n\nprint(qc.state())\n\n# [[0.707+0.j]\n# [0.   +0.j]\n# [0.   +0.j]\n# [0.707+0.j]]\n```\n\n> ## QuantumCircuit.`probabilities`(*round=3*)\n\n*Returns probabilitiy of the qubits within the quantum circuit.*\n\n### Parameters:\n\n`round (int)` - rounding the probabilities to the nearest `round`\n\n### Returns:\n\n`prob_matrix (numpy.ndarray)` - array of quantum circuit's probabilities.\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(2)\n\nqc.hadamard(0)\n\nqc.cnot(0, 1)\n\nprint(qc.probabilities())\n\n# [0.5 0.  0.  0.5]\n```\n\n> ## QuantumCircuit.`measure`()\n\n*Collapses the state based on the quantum circuit's probabilities.*\n\n### Parameters:\n\n`None`\n\n### Returns:\n\n`final_state (numpy.ndarray)` - array of quantum circuit's measurement.\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(2)\n\nqc.hadamard(0)\nqc.cnot(0, 1)\n\nprint(qc.measure())\n\n# ~Results may vary~\n# 00\n```\n\n> ## QuantumCircuit.`reverse`()\n\n*Reverses the quantum circuit's values.*\n\n### Parameters:\n\n`None`\n\n### Returns:\n\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(2)\n\nqc.hadamard(0)\n\nprint(qc.state())\n\nqc.reverse()\n\nprint(qc.state())\n\n# [[0.707+0.j]\n# [0.   +0.j]\n# [0.707+0.j]\n# [0.   +0.j]]\n \n# [[0.   +0.j]\n# [0.707+0.j]\n# [0.   +0.j]\n# [0.707+0.j]]\n```\n> ## QuantumCircuit.`toffoli`(*control_1*, *control_2*, *target*)\n\n*A 3-qubit quantum gate that takes in two control qubits and one target qubit.*\n\n### Parameters:\n\n`control_1 (int)` - first control qubit.\n\n`control_2 (int)` - second control qubit.\n\n`target (int)` - target qubit.\n\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(3)\n\nqc.hadamard(0)\n\nqc.hadamard(1)\n\nqc.toffoli(0,1,2)\n\nprint(qc.state())\n\n# [[0.5+0.j]\n# [0. +0.j]\n# [0.5+0.j]\n# [0. +0.j]\n# [0.5+0.j]\n# [0. +0.j]\n# [0. +0.j]\n# [0.5+0.j]]\n```\n\n> ## QuantumCircuit.`rccx`(*control_1*, *control_2*, *target*)\n\n*A 3-qubit quantum gate that takes in two control qubits and one target qubit.*\n\n### Parameters:\n\n`control_1 (int)` - first control qubit.\n\n`control_2 (int)` - second control qubit.\n\n`target (int)` - target qubit.\n\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\nqc = QuantumCircuit(3)\n\nqc.hadamard(0)\n\nqc.hadamard(1)\n\nqc.rccx(0,1,2)\n\nprint(qc.state())\n\n# [[ 0.5-0.j ]\n# [ 0. +0.j ]\n# [ 0.5-0.j ]\n# [ 0. +0.j ]\n# [ 0.5-0.j ]\n# [ 0. +0.j ]\n# [-0. +0.j ]\n# [ 0. +0.5j]]\n```\n\n> ## QuantumCircuit.`rc3x`(*a*, *b*, *c*, *d*)\n\n*A 4-qubit quantum gate that takes in 4 unique qubits.*\n\n### Parameters:\n\n`a (int)` - first input qubit.\n\n`b (int)` - second input qubit.\n\n`c (int)` - third input qubit.\n\n`d (int)` - fourth input qubit.\n\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\nqc = QuantumCircuit(4)\n\nqc.hadamard(0)\n\nqc.hadamard(1)\n\nqc.hadamard(2)\n\nqc.rc3x(0,1,2)\n\nprint(qc.state())\n\n# [[ 0.354-0.j   ]\n# [ 0.   +0.j   ]\n# [ 0.354-0.j   ]\n# [ 0.   +0.j   ]\n# [ 0.354-0.j   ]\n# [ 0.   +0.j   ]\n# [ 0.354-0.j   ]\n# [ 0.   +0.j   ]\n# [ 0.354-0.j   ]\n# [ 0.   +0.j   ]\n# [ 0.354-0.j   ]\n# [ 0.   +0.j   ]\n# [ 0.   +0.354j]\n# [-0.   +0.j   ]\n# [ 0.   -0.j   ]\n# [-0.354+0.j   ]]\n```\n> ## QuantumCircuit.`cnot`(*control*, *target*)\n\n*A 2-qubit quantum gate that takes in a control qubit and one target qubit.*\n\n### Parameters:\n\n`control (int)` - control qubit.\n\n`target (int)` - target qubit.\n\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\nqc = QuantumCircuit(2)\n\nqc.hadamard(0)\n\nqc.cnot(0,1)\n\nprint(qc.state())\n\n# [[0.707+0.j]\n# [0.   +0.j]\n# [0.   +0.j]\n# [0.707+0.j]]\n```\n\n> ## QuantumCircuit.`cr`(*control*, *target*)\n\n*A 2-qubit quantum gate that takes in a control qubit and one target qubit.*\n\n### Parameters:\n\n`control (int)` - control qubit.\n\n`target (int)` - target qubit.\n\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\nqc = QuantumCircuit(2)\n\nqc.hadamard(0)\n\nqc.cr(0,1)\n\nprint(qc.state())\n\n# [[0.707+0.j]\n# [0.   +0.j]\n# [0.707+0.j]\n# [0.   +0.j]]\n```\n\n\n> ## QuantumCircuit.`cz`(*control*, *target*)\n\n*A 2-qubit quantum gate that takes in a control qubit and one target qubit.*\n\n### Parameters:\n\n`control (int)` - control qubit.\n\n`target (int)` - target qubit.\n\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\nqc = QuantumCircuit(2)\n\nqc.hadamard(0)\n\nqc.cz(0,1)\n\nprint(qc.state())\n\n# [[0.707+0.j]\n# [0.   +0.j]\n# [0.707+0.j]\n# [0.   +0.j]]\n```\n\n> ## QuantumCircuit.`swap`(*qubit_1*, *qubit_2*)\n\n*A 2-qubit quantum gate that takes in 2 qubits to swap there properties.*\n\n### Parameters:\n\n`qubit_1 (int)` - first qubit to swap.\n\n`qubit_2 (int)` - second qubit to swap.\n\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\nqc = QuantumCircuit(2)\n\nqc.hadamard(0)\n\nqc.swap(0,1)\n\nprint(qc.state())\n\n# [[0.707+0.j]\n# [0.707+0.j]\n# [0.   +0.j]\n# [0.   +0.j]]\n```\n\n> ## QuantumCircuit.`rxx`(*qubit_1*, *qubit_2*, *theta=numpy.pi/2*)\n\n*A 2-qubit quantum gate that takes in two qubits and a representation of theta to initialize in the quantum state.*\n\n### Parameters:\n\n`qubit_1 (int)` - first qubit input.\n\n`qubit_2 (int)` - second qubit input.\n\n`theta (float)` default: `numpy.pi/2` -  angle of rotation around z-axis.\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\nqc = QuantumCircuit(2)\n\nqc.hadamard(0)\n\nqc.rxx(0,1)\n\nprint(qc.state())\n\n# [[0.5+0.j ]\n# [0. -0.5j]\n# [0.5+0.j ]\n# [0. -0.5j]]\n```\n\n> ## QuantumCircuit.`rzz`(*qubit_1*, *qubit_2*, *theta=numpy.pi/2*)\n\n*A 2-qubit quantum gate that takes in two qubits and a representation of theta to initialize in the quantum state.*\n\n### Parameters:\n\n`qubit_1 (int)` - first qubit input.\n\n`qubit_2 (int)` - second qubit input.\n\n`theta (float)` default: `numpy.pi/2` -  angle of rotation around z-axis.\n\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\nqc = QuantumCircuit(2)\n\nqc.hadamard(0)\n\nqc.rxx(0,1)\n\nprint(qc.state())\n\n# [[0.5+0.j ]\n# [0. -0.5j]\n# [0.5+0.j ]\n# [0. -0.5j]]\n```\n\n> ## QuantumCircuit.`customControlPhase`(*control*, *target*, *custom_matrix*)\n\n*Used to insert single qubit based quantum gates to have a control qubit apart of it and committing to the quantum state.*\n\n### Parameters:\n\n`control (int)` - control qubit for given matrix.\n\n`target (int)` - target qubit for given matrix.\n\n`custom_matrix (np.array)` -  matrix to be applied to the quantum circuit.\n\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nfrom QCpy.QuantumGate import PauliX\n\nqc = QuantumCircuit(2)\n\nqc.hadamard(0)\n\nqc.customControlPhase(0,1, PauliX().matrix)\n\nprint(qc.state())\n\n# [[0.707+0.j]\n# [0.   +0.j]\n# [0.   +0.j]\n# [0.707+0.j]]\n```\n\n> ## QuantumCircuit.`identity`(*qubit*)\n\n*Used to confirm value that a qubit is representing and does nothing to manipulate the value of such qubit.*\n\n### Parameters:\n\n`qubit (int)` - the qubit to have the identity gate be applied to the quantum wire.\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(2)\n\nqc.identity(0)\n\nprint(qc.state())\n\n# [[1.+0.j]\n# [0.+0.j]\n# [0.+0.j]\n# [0.+0.j]]\n```\n\n> ## QuantumCircuit.`x`(*qubit*)\n\n*Used to invert the value of what a qubit is representing.*\n\n### Parameters:\n\n`qubit (int)` - the qubit to have the Pauli-X gate be applied to the quantum wire.\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(2)\n\nqc.x(0)\n\nprint(qc.state())\n\n# [[0.+0.j]\n# [0.+0.j]\n# [1.+0.j]\n# [0.+0.j]]\n```\n\n\n> ## QuantumCircuit.`hadmard`(*qubit*)\n\n*Used to put a given qubit into superposition.*\n\n### Parameters:\n\n`qubit (int)` - the qubit to have the Hadamard gate be applied to the quantum wire.\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(2)\n\nqc.hadamard(0)\n\nprint(qc.state())\n\n# [[0.707+0.j]\n# [0.   +0.j]\n# [0.707+0.j]\n# [0.   +0.j]]\n```\n\n> ## QuantumCircuit.`y`(*qubit*)\n\n*Changes the state of a qubit by pi around the y-axis of a Bloch Sphere.*\n\n### Parameters:\n\n`qubit (int)` - the qubit to have the Pauli-Y gate be applied to the quantum wire.\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(2)\n\nqc.y(0)\n\nprint(qc.state())\n\n# [[0.+0.j]\n# [0.+0.j]\n# [0.+1.j]\n# [0.+0.j]]\n```\n\n\n> ## QuantumCircuit.`z`(*qubit*)\n\n*Changes the state of a qubit by pi around the z-axis of a Bloch Sphere.*\n\n### Parameters:\n\n`qubit (int)` - the qubit to have the Pauli-Z gate be applied to the quantum wire.\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(2)\n\nqc.hadamard(0)\n\nqc.z(0)\n\nprint(qc.state())\n\n# [[ 0.707+0.j]\n# [ 0.   +0.j]\n# [-0.707+0.j]\n# [ 0.   +0.j]]\n```\n\n> ## QuantumCircuit.`phase`(*qubit*, *theta=numpy.pi/2*)\n\n*Commits to a rotation around the z-axis based off of the inputted theta value.*\n\n### Parameters:\n\n`qubit (int)` - the qubit to have the Phase gate be applied to the quantum wire.\n\n`theta (float)` default: `numpy.pi/2` -  angle of rotation around z-axis.\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(2)\n\nqc.hadamard(0)\n\nqc.phase(0)\n\nprint(qc.state())\n\n# [[0.707+0.j   ]\n# [0.   +0.j   ]\n# [0.   +0.707j]\n# [0.   +0.j   ]]\n```\n\n> ## QuantumCircuit.`s`(*qubit*)\n\n*Is a Phase gate where the inputted theta value is given as a constant of theta = pi / 2.*\n\n### Parameters:\n\n`qubit (int)` - the qubit to have the Pauli-Z gate be applied to the quantum wire.\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(2)\n\nqc.hadamard(0)\n\nqc.s(0)\n\nprint(qc.state())\n\n# [[0.707+0.j   ]\n# [0.   +0.j   ]\n# [0.   +0.707j]\n# [0.   +0.j   ]]\n```\n\n> ## QuantumCircuit.`sdg`(*qubit*)\n\n*Is a Phase gate and inverse of the S gate where the inputted theta value is given as a constant of theta = -pi / 2.*\n\n### Parameters:\n\n`qubit (int)` - the qubit to have the Sdg gate be applied to the quantum wire.\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(2)\n\nqc.hadamard(0)\n\nqc.sdg(0)\n\nprint(qc.state())\n\n# [[0.707+0.j   ]\n# [0.   +0.j   ]\n# [0.   -0.707j]\n# [0.   +0.j   ]]\n```\n\n> ## QuantumCircuit.`t`(*qubit*)\n\n*T gate is a special use case gate that in implemented from the P Gate.*\n\n### Parameters:\n\n`qubit (int)` - the qubit to have the T gate be applied to the quantum wire.\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(2)\n\nqc.hadamard(0)\n\nqc.t(0)\n\nprint(qc.state())\n\n# [[0.707+0.j ]\n# [0.   +0.j ]\n# [0.5  +0.5j]\n# [0.   +0.j ]]\n```\n\n> ## QuantumCircuit.`tdg`(*qubit*)\n\n*Tdg gate is a special use case gate that in implemented from the P Gate and is the inverse of the T gate.*\n\n### Parameters:\n\n`qubit (int)` - the qubit to have the Tdg gate be applied to the quantum wire.\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(2)\n\nqc.hadamard(0)\n\nqc.tdg(0)\n\nprint(qc.state())\n\n# [[0.707+0.j ]\n# [0.   +0.j ]\n# [0.5  -0.5j]\n# [0.   +0.j ]]\n```\n\n> ## QuantumCircuit.`rz`(*qubit*, *theta=numpy.pi/2*)\n\n*RZ gate commits a rotation around the z-axis for a qubit.*\n\n### Parameters:\n\n`qubit (int)` - the qubit to have the Rz gate be applied to the quantum wire.\n\n`theta (float)` default: `numpy.pi/2` -  angle of rotation around z-axis.\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(2)\n\nqc.hadamard(0)\n\nqc.rz(0)\n\nprint(qc.state())\n\n# [[0.5-0.5j]\n# [0. +0.j ]\n# [0.5+0.5j]\n# [0. +0.j ]]\n```\n\n> ## QuantumCircuit.`ry`(*qubit*, *theta=numpy.pi/2*)\n\n*RY gate commits a rotation around the y-axis for a qubit.*\n\n### Parameters:\n\n`qubit (int)` - the qubit to have the Ry gate be applied to the quantum wire.\n\n`theta (float)` default: `numpy.pi/2` -  angle of rotation around y-axis.\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(2)\n\nqc.ry(0)\n\nprint(qc.state())\n\n# [[0.707+0.j]\n# [0.   +0.j]\n# [0.707+0.j]\n# [0.   +0.j]]\n```\n\n> ## QuantumCircuit.`rx`(*qubit*, *theta=numpy.pi/2*)\n\n*RX gate commits a rotation around the x-axis for a qubit.*\n\n### Parameters:\n\n`qubit (int)` - the qubit to have the Ry gate be applied to the quantum wire.\n\n`theta (float)` default: `numpy.pi/2` -  angle of rotation around x-axis.\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(2)\n\nqc.rx(0)\n\nprint(qc.state())\n\n# [[0.707+0.j   ]\n# [0.   +0.j   ]\n# [0.   -0.707j]\n# [0.   +0.j   ]]\n```\n\n> ## QuantumCircuit.`sx`(*qubit*)\n\n*SX gate is the square root of the Inverse gate (X, PauliX Gate).*\n\n### Parameters:\n\n`qubit (int)` - the qubit to have the Sx gate be applied to the quantum wire.\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(2)\n\nqc.sx(0)\n\nprint(qc.state())\n\n# [[0.5+0.5j]\n# [0. +0.j ]\n# [0.5-0.5j]\n# [0. +0.j ]]\n```\n\n> ## QuantumCircuit.`sxdg`(*qubit*)\n\n*SXDG gate is the negative square root of the Inverse gate (X, PauliX Gate) and inverse of the SX gate.*\n\n### Parameters:\n\n`qubit (int)` - the qubit to have the SXdg gate be applied to the quantum wire.\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(2)\n\nqc.sxdg(0)\n\nprint(qc.state())\n\n# [[0.5-0.5j]\n# [0. +0.j ]\n# [0.5+0.5j]\n# [0. +0.j ]]\n```\n\n> ## QuantumCircuit.`u`(*qubit*, *theta=numpy.pi/2*, *phi=numpy.pi/2*, *lmbda=numpy.pi/2*)\n\n*U gate is given three inputs (theta, phi, and lambda) that allow the inputs to manipulate the base matrix to allow for the position of the enacted qubit around the bloch sphere representation.*\n\n### Parameters:\n\n`qubit (int)` - the qubit to have the U gate be applied to the quantum wire.\n\n`theta (float)` default: `numpy.pi/2` - angle representation to rotate the qubit's representation.\n\n`phi (float)` default: `numpy.pi/2` -  angle representation to rotate the qubit's representation.\n\n`lmbda (float)` default: `numpy.pi/2` -  angle representation to rotate the qubit's representation.\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nqc = QuantumCircuit(2)\n\nqc.u(0)\n\nprint(qc.state())\n\n# [[0.5-0.5j]\n# [0. +0.j ]\n# [0.5+0.5j]\n# [0. +0.j ]]\n```\n\n> ## QuantumCircuit.`custom`(*qubit*, *custom_matrix*)\n\n*Will take in a custom single qubit quantum gate and implement it on a qubit.*\n\n### Parameters:\n\n`qubit (int)` - the qubit to have the U gate be applied to the quantum wire.\n\n`custom_matrix (np.array)` -  matrix to be applied to the quantum circuit.\n\n### Returns:\n`None`\n\n### Example:\n\n```python\nfrom QCpy.QuantumCircuit import QuantumCircuit\n\nfrom QCpy.QuantumGate import PauliX\n\nqc = QuantumCircuit(2)\n\nqc.custom(0, PauliX().matrix)\n\nprint(qc.state())\n\n# [[0.+0.j]\n# [0.+0.j]\n# [1.+0.j]\n# [0.+0.j]]\n```\n\n# Visualizer\n\n*A collection of classes to visualize the quantum circuit*\n\n> ## *class* QC.Visualizer.QSphere(*circuit*)\n\n*Visualizes the quantum circuit as a q-sphere*\n\n### Parameters:\n\n`circuit` - the quantum circuit\n\n### Attributes:\n\n`None`\n\n> ## QSphere.`makeSphere`(*path=\"qsphere.png\"*, *save=True*, *show=True*, *darkmode=True*)\n\n*Returns a Q-Sphere that plots a global visualization of the quantum states in a 3D global view*\n\n### Parameters:\n\n`path (str)` - name of the image to be saved\n\n`save (bool)` - pass True for the graph to be saved\n\n`show (bool)` - pass True for the sphere to be shown instead of saved\n\n`darkmode (bool)` - pass True for darkmode, false for lightmode\n\n### Returns:\n\n`None`\n\n### Example:\n\n```python\nfrom QuantumCircuit import *\nfrom Visualizer import *\n\nqc = QuantumCircuit(3)\n\nqc.hadamard(0)\nqc.hadamard(1)\nqc.hadamard(2)\n\nsphere_ex = QSphere(qc)\nsphere_ex.makeSphere(save=False, show=True)\n```\n> ## *class* QC.Visualizer.StateVector(*circuit*)\n\n*Visualizes the quantum circuit's quantum amplitutes using a bar graph*\n\n### Parameters:\n\n`circuit` - the quantum circuit\n\n### Attributes:\n\n`None`\n\n> ## StateVector.`makeGraph`(*path=\"statevector.png\"*, *save=True*, *show=True*, *darkmode=True*)\n\n*Returns a graph that plots all the amplitudes of the qubits being measured*\n\n### Parameters:\n\n`path (str)` - name of the image to be saved\n\n`save (bool)` - pass True for the graph to be saved\n\n`show (bool)` - pass True for the graph to be shown instead of saved\n\n`darkmode (bool)` - pass True for darkmode and false for lightmode\n\n### Returns:\n\n`None`\n\n### Example:\n\n```python\nfrom QuantumCircuit import *\nfrom Visualizer import *\n\nqc = QuantumCircuit(3)\n\nqc.hadamard(0)\nqc.hadamard(1)\nqc.hadamard(2)\n\nstateVector_ex = StateVector(qc)\nstateVector_ex.makeGraph(save=False, show=True)\n```\n\n> ## *class* QC.Visualizer.Probabilities(*circuit*)\n\n*Visualizes the quantum circuit's qubits probability of being measured using a bar graph*\n\n### Parameters:\n\n`circuit` - the quantum circuit\n\n### Attributes:\n\n`None`\n\n> ## Probabilities.`makeGraph`(*path=\"probabilities.png\"*, *save=True*, *show=True*, *darkmode=True*)\n\n*Returns a graph that plots all the probabilities of the qubits being measured*\n\n### Parameters:\n\n`path (str)` - name of the image to be saved\n\n`save (bool)` - pass True for the graph to be saved\n\n`show (bool)` - pass True for the graph to be shown instead of saved\n\n`darkmode (bool)` - pass True for darkmode and false for lightmode\n\n### Returns:\n\n`None`\n\n### Example:\n\n```python\nfrom QuantumCircuit import *\nfrom Visualizer import *\n\nqc = QuantumCircuit(3)\n\nqc.hadamard(0)\nqc.hadamard(1)\nqc.hadamard(2)\n\nprobabilities_ex = Probabilities(qc)\nprobabilities_ex.makeGraph(save=False, show=True)\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "",
    "version": "1.0",
    "split_keywords": [
        "quantum computing",
        "visualization",
        "simulation",
        "linear algebra",
        ""
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49956e459b5edb4909536b642af73b20171a63e8da555bf773d72f86d3b44c5e",
                "md5": "d1705260bf1ead742ef0c982220c5d6f",
                "sha256": "cb24ced0de6c4b2ba29ab7231b7a20294ea1fb1ad0ced55eec0a9d3118e2c31f"
            },
            "downloads": -1,
            "filename": "QCpython-1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "d1705260bf1ead742ef0c982220c5d6f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 28186,
            "upload_time": "2023-01-08T22:56:34",
            "upload_time_iso_8601": "2023-01-08T22:56:34.922178Z",
            "url": "https://files.pythonhosted.org/packages/49/95/6e459b5edb4909536b642af73b20171a63e8da555bf773d72f86d3b44c5e/QCpython-1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-01-08 22:56:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "QCpyDevs",
    "github_project": "QCpy",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "qcpython"
}
        
Elapsed time: 0.02829s