Algorithm which swaps the columns of a matrix A mx(n*2) without looping?

1 view (last 30 days)
Hi all, I need an algorithm which swaps the columns of a matrix A mx(n*2) without looping in the following way:
%if A=[column 1, column 2, ... column n, column n+1, ... column n*2]
%I want B=[column 1, column n+1, column 2, column n+2, ... column n, column 2*n]
E.g.
A=[1 2 3 4; 5 6 0 9; 1 2 1 8]
B=[1 4 2 3; 5 9 6 0; 1 8 2 1]
Could you help me?

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 7 May 2014
i1 = reshape(1:size(A,2),[],2)';
B = A(:,i1(:));

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!