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.
假设我有一个数组
Y = [1, 2, 3, 4, 5, 6]
我想创建一个新数组,用 0 替换所有其他数字,所以它创建
y = [1, 0, 3, 0, 5, 0]
我将如何以有效的方式解决这个问题并为此编写代码?
这应该这样做:
Y(2:2:end) = 0;
使用这条线,您基本上可以说从秒到最后的每个元素,以两步为单位,应该为零。这也可以在更大的步骤中完成:Y(N:N:end) = 0使每个Nth 元素都等于 0。
Y(N:N:end) = 0
N