Skip to content

Commit 8b1b279

Browse files
output views
1 parent f5bfb49 commit 8b1b279

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MATLABDiffEq.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ function DiffEqBase.__solve(
7474
if uType <: AbstractArray
7575
timeseries = Vector{uType}(undef,length(ts))
7676
for i=1:length(ts)
77-
timeseries[i] = timeseries_tmp[i,:]
77+
timeseries[i] = @view timeseries_tmp[i,:]
7878
end
7979
else
8080
timeseries = timeseries_tmp

0 commit comments

Comments
 (0)