avg_matrix.ctqwalk {qwalkr} | R Documentation |
The Average Mixing Matrix of a Continuous-Time Quantum Walk
Description
The Average Mixing Matrix of a Continuous-Time Quantum Walk
Usage
## S3 method for class 'ctqwalk'
avg_matrix(object, ...)
Arguments
object |
a representation of the quantum walk. |
... |
further arguments passed to or from other methods. |
Details
Let be the mixing matrix of the quantum walk, then the average mixing matrix is defined as
and encodes the long-term average behavior of the walk. Given the Hamiltonian
, it is possible to prove that
Value
avg_matrix()
returns the average mixing matrix
as a square matrix of the same order as the walk.
See Also
Examples
walk <- ctqwalk(matrix(c(0,1,0,1,0,1,0,1,0), nrow=3))
# Return the average mixing matrix
avg_matrix(walk)
[Package qwalkr version 0.1.0 Index]