We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dc0ae0 commit 7451c30Copy full SHA for 7451c30
src/tensor.jl
@@ -10,7 +10,7 @@ product operator.
10
TensorProductOperator(A, B) = A ⊗ B
11
TensorProductOperator(A, B, C) = A ⊗ B ⊗ C
12
13
-(A ⊗ B)(u) = vec(B * reshape(u, M, N) * transpose(A))
+(A ⊗ B)(v) = vec(B * reshape(v, M, N) * transpose(A))
14
```
15
where `M = size(B, 2)`, and `N = size(A, 2)`
16
0 commit comments