Skip to content

Commit 7451c30

Browse files
one more docstring
1 parent 3dc0ae0 commit 7451c30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tensor.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ product operator.
1010
TensorProductOperator(A, B) = A ⊗ B
1111
TensorProductOperator(A, B, C) = A ⊗ B ⊗ C
1212
13-
(A ⊗ B)(u) = vec(B * reshape(u, M, N) * transpose(A))
13+
(A ⊗ B)(v) = vec(B * reshape(v, M, N) * transpose(A))
1414
```
1515
where `M = size(B, 2)`, and `N = size(A, 2)`
1616

0 commit comments

Comments
 (0)