Skip to content

Commit 59216f7

Browse files
authored
Add dispatch for non-matrix case
1 parent 8aa2386 commit 59216f7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/vector_of_array.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,9 @@ end
101101
@recipe function f(VA::AbstractDiffEqArray)
102102
VA.t,VA'
103103
end
104+
@recipe function f(VA::DiffEqArray{T,1}) where {T}
105+
VA.t,VA.u
106+
end
104107

105108
# Broadcast
106109

0 commit comments

Comments
 (0)