Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个矩阵
X = [1 1;2 2;3 3;4 4]; Y = [2 4];
我希望得到的矩阵z只有第 2 行和第 4 行(中的值Y)X。那是,
z
Y
X
Z = [2 2;4 4];
有什么解决办法吗?
Z = X(Y,:);
在我看来,这是一个很容易研究的问题:“MATLAB 矩阵索引”的第一个结果回答了您的问题,并且有更多关于选择部分 MATLAB 矩阵的一般信息。