Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesjcai committed Jan 8, 2021
1 parent 2b87d11 commit 569c46c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -51,7 +51,7 @@ julia> using TensorDecompositions
julia> u = randn(10); v = randn(20); w = randn(30)

# Generate a noisy rank-1 tensor
julia> T = cat(3, map(x -> x * u * v', w)...) + 0.2 * randn(10, 20, 30)
julia> T = cat(map(x -> x * u * v', w)..., dims=3) + 0.2 * randn(10, 20, 30)

julia> size(T)
(10, 20, 30)
Expand Down

0 comments on commit 569c46c

Please sign in to comment.