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.
我正在做一个关于粒子群优化的项目,在 Matlab 中编码。我需要用矩阵 B 中的一些行替换矩阵 A 的行,并从矩阵 B 中删除这些行。我怎样才能做到这一点?
把你的行索引放在向量中,比如说
indexA=[0 0 0 1 0 1 1 0]. indexB=[0 1 0 1 0 1].
分区 B 到
A(indexA,:) = B(indexB,:); B(indexB,:) = [];