Info
此问题已关闭。 请重新打开它进行编辑或回答。
I want the ones of a binary array to exchange positions with all the zeros and store the result in other array with each iteration.
1 次查看(过去 30 天)
显示 更早的评论
a=[1 1 1 0 0 ]
i want it to be like this
a1=[1 1 0 1 0]
a2=[1 1 0 0 1]
then i want the second member (1) to move th position of zeros step by step like
a3=[1 0 1 1 0]
a4=[1 0 1 0 1]
and rhe same for the first member
0 个评论
回答(0 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!