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.
在我的一个程序中,我想删除矩阵的一行。我在网上找到了这个视频教程。它说要删除,例如,第一行,写
A(1,:)=[]
但是我不明白这到底是什么意思。LHS 只是矩阵的第一行。我们将其分配给一个空矩阵,并且以某种方式删除了第一行。您能否更清楚地了解空矩阵的功能究竟是什么以及背景中发生了什么?