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

1 Ansicht (letzte 30 Tage)
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?

Akzeptierte Antwort

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

Weitere Antworten (0)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by