MATLAB: How do you read this code

modvectorized code

Can somebody break down how they would read this code?
>> A=[0:2:10];k=2;
>> B=A(mod((1:end)-k-1,end)+1);
I end up with B=A(9 10 0 1 2 3 4 5 6 7)…

Best Answer