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.
我有一个随机点有 0 的数组,我想创建这个没有任何 0 的数组,例如:
1 2 3 0 3 4 0 3 should be reduced to: 1 2 3 3 4 3
有没有在 MATLAB 中删除这些行的好方法?我能做的最多就是将这些值在数组中向上移动,但我想知道是否有“取消链接”之类的东西
如果向量的名字是v;
然后就
v = v(v~=0)
会做。