pick columns with a index vector
Ältere Kommentare anzeigen
Hi I have a 30x100 data matrix and a 1x100 index vector with 1s in some columns and 0 elsewhere. How can I pick up columns in the data matrix corresponding to the 1s in the index vector. Thanks in advance.
Antworten (1)
Azzi Abdelmalek
am 9 Jan. 2014
Bearbeitet: Azzi Abdelmalek
am 9 Jan. 2014
%Example
A=rand(30,100)
B=randi([0 1],1,100)
%----------------------
out=A(:,logical(B))
3 Kommentare
Linden
am 9 Jan. 2014
Linden
am 9 Jan. 2014
Azzi Abdelmalek
am 9 Jan. 2014
Ok, then mark the answer as accepted
Kategorien
Mehr zu Resizing and Reshaping Matrices finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!