diff --git a/README.md b/README.md index c06d573..d444759 100644 --- a/README.md +++ b/README.md @@ -40,9 +40,9 @@ qubit, that can be given by the eigenstates of the 3 Pauli operators. ```julia julia> using Cliffords, QuantumTomography -julia> obs = [ (complex(Pauli(i))+eye(2))/2 for i in 1:3 ]; +julia> obs = Matrix[ (complex(Pauli(i))+eye(2))/2 for i in 1:3 ]; -julia> append!(obs, [ (-complex(Pauli(i))+eye(2))/2 for i in 1:3 ]); +julia> append!(obs, Matrix[ (-complex(Pauli(i))+eye(2))/2 for i in 1:3 ]); julia> tomo = LSStateTomo(obs); ```