Elements¶
Code¶
import pennylane as qml
dev = qml.device("default.qubit", wires=2)
@qml.qnode(dev)
def circuit(x):
    qml.RX(x, wires=0)
    return qml.expval(qml.PauliZ(0))
circuit(0.5)
Admonitions¶
Definition
A cat is cat and that is that.
Important
Quantum mechanics is objectively the coolest theory.
Note
Classical mechanics is no longer cool.
Warning
Is relativity cool?
Tables¶
| Element | Type | Description | 
|---|---|---|
| Cat 1 | A comfortable cat | This is an okay cat. | 
| Cat 2 | A fluffy cat | This is the best cat. | 
| Cat 3 | A cat with a hat | This cat is happy. | 
elements
                Download Python script
                Download Notebook
                View on GitHub