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.
我有一个尺寸为 512 x 683 的矩阵,但希望将部分水平从 108 到 305,垂直分离 160 - 430,以便我可以对其进行处理,然后将其替换回原始矩阵。我将如何删除它并最终重新连接它?谢谢
正如 schorsch 在评论中所说,只需执行以下操作:
A=M(160:430,108:305)
获取值
然后修改您的样本 ( B=transform(A))
B=transform(A)
并以与取出 A 相同的方式放入 B
M(160:430,108:305)=B
请记住:基本上意味着介于两者之间的所有内容
不过,我同意 Mark 的观点,MATLAB 的文档非常出色,并且是 MATLAB 与开源相比最好的功能之一,请使用它。