Skip to content

Commit c2837a7

Browse files
author
Rahul Manavalan
committed
Other fixes
1 parent e6f5599 commit c2837a7

3 files changed

Lines changed: 2 additions & 7 deletions

File tree

examples/POD/lorenz.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ function lorenz_prob()
1818
end
1919

2020
sol = lorenz_prob()
21-
solution = Matrix(reduce(hcat,sol.u)')
22-
plot(solution[:,1],solution[:,2],solution[:,3])
21+
solution = Array(sol)
22+
plot(solution[1,:],solution[2,:],solution[3,:])
2323
# savefig("lorenz_attractor.png")
2424

2525
## Two way POD

src/ModelOrderReduction.jl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,10 @@ module ModelOrderReduction
88
using RandomizedLinAlg
99

1010
include("DataReduction/POD.jl")
11-
include("DataReduction/DiffusionMaps.jl")
12-
include("DataReduction/VAE.jl")
1311

1412
export SVD, TSVD, RSVD
1513
export POD, reduce!, matricize
1614
#========================Model Reduction========================================#
17-
include("ModelReduction/LiftAndLearn.jl")
1815

1916
#===============================================================================#
2017
end

test/runtests.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,4 @@ using Test
33
using OrdinaryDiffEq
44

55
include("DataReduction.jl")
6-
include("ModelReduction.jl")
7-
86
#---------- Model Reduction ----------------#

0 commit comments

Comments
 (0)