我不确定为什么下面的代码不起作用。我基本上试图摆脱probofdetectionanddelamprop
中等于1或小于10e-12的元素,这意味着probofdetectionanddelamprop
的大小正在动态变化。因此,我添加了一个while循环来检查i
何时等于新的size(probofdetectionanddelamprop)
,但这似乎不起作用。
while i ~= numel(probofdetectionanddelamprop)
for i = 1:no_iterations % Clearly, no_iterations is > numel(probofdetectionanddelamprop)
if (probofdetectionanddelamprop(i) <=10e-12 || probofdetectionanddelamprop(i) == 1)
probofdetectionanddelamprop(i) = [];
end
end
end
由于
答案 0 :(得分:3)
这个怎么样:
probofdetectionanddelamprop(probofdetectionanddelamprop < 1e-11 | probofdetectionanddelamprop == 1) = [];