org-arl / SignalAnalysis.jl

Signal analysis toolbox for Julia
MIT License
42 stars 11 forks source link

toframe() on ranges should return ranges #23

Closed mchitre closed 1 year ago

mchitre commented 3 years ago

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)
mchitre commented 1 year ago

Fixed