Skip to content

Commit 18765ee

Browse files
Fix O_xzx in operators manual (#284)
1 parent 59c49b2 commit 18765ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/man/operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ using TensorKit, MPSKit, MPSKitModels
2222
```@example operators
2323
S_x = TensorMap(ComplexF64[0 1; 1 0], ℂ^2 ← ℂ^2)
2424
S_z = TensorMap(ComplexF64[1 0; 0 -1], ℂ^2 ← ℂ^2)
25-
O_xzx = FiniteMPO(S_x ⊗ S_x ⊗ S_x);
25+
O_xzx = FiniteMPO(S_x ⊗ S_z ⊗ S_x);
2626
```
2727

2828
The individual tensors are accessible via regular indexing. Note that the tensors are

0 commit comments

Comments
 (0)