Skip to content

Commit

Permalink
add missing end
Browse files Browse the repository at this point in the history
  • Loading branch information
HDictus committed Jan 10, 2020
1 parent 66b187a commit 7cd066e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/dspbase.jl
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,7 @@ function _conv_sz(A, S)
outsize = .+(S...) .- (length(S) - 1)
out = _conv_similar(A, outsize)
_conv!(out, A, S, outsize)

end


# May switch argument order
Expand All @@ -724,6 +724,7 @@ with arbitrary indexing offsets, but their axes must be a `UnitRange`.
"""
function _conv(A::AbstractArray...)
maxnd = max([ndims(a) for a in A]...)
error()
return conv([cat(a, dims=maxnd) for a in A]...)
end

Expand Down

0 comments on commit 7cd066e

Please sign in to comment.