JuliaArrays / ShiftedArrays.jl

Lazy shifted arrays for data analysis in Julia
Other
50 stars 10 forks source link

function request #27

Open ZHENGSY opened 5 years ago

ZHENGSY commented 5 years ago

Could you pls consider adding a new way to shift array? Like this Before shift: 1 4 7 2 5 8 3 6 9

after clockwise shift: 2 1 4 3 5 7 6 9 8

and anti-clockwise, something like that.

It seemed a little bit tedious, but quite useful to me.

Thank you for your code!