标签: matlab matrix vector
我有一个矩阵,我有一个n x 1列向量,每行中的条目是对应于矩阵中特定行的数字。我想创建一个只包含列向量中指定的行的新矩阵。我怎么能这样做?
答案 0 :(得分:1)
% Your matrix... A = [ 1 1 3 4 2 3 5 5 6 1 2 2 ]; % Your vector with indices... B = [1 3]; % Your subset... C = A(B,:);