Click here to Skip to main content
15,894,646 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i am creating simulink rs model for overlapped symbol. for overlapping i have to use circular shift.i have used Embedded MATLAB Function block and write following function in that.


function y = fcn(u,Shft)
%#eml

y = circshift(u,Shft);


But using this i get output like if input is 5678 and shft is 2 then output is 7856.
Input of circular shift in my project is [16320*1] in bit format. now i want to do circular shift at every 64bits row. means circular shift happen at every 64bits continuously upto 16320.not at the end of 16320.

can any one have idea regarding this.

it is urgent.
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900