SignalAnalysis.jl
SignalAnalysis.jl copied to clipboard
toframe() on ranges should return ranges
Currently toframe() on a range returns a vector, and one has to cast it into a range like this:
UnitRange(toframe(a:b, x)...)
This should be replaced by:
toframe(a:b, x)