Skip to content

Commit 7e830c3

Browse files
Merge pull request #43 from SebastianM-C/vec
Add dispatch for non-matrix case
2 parents 8aa2386 + 59216f7 commit 7e830c3

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)