Extracting the data

1 次查看(过去 30 天)
Sravantej
Sravantej 2012-2-29
hi,i have a vector consisting of a very few non zero values and remaining all zeros, i need to extract only the non zero values but not zeros. I write a code like x=[0 0 0 0 0 1 0 5 0 9 6 0 0 0 0] n=length(x); for i=1:n if(x(i)~=0) y(i)=x(i); end end But it'll result something like y=[0 0 0 0 0 1 0 5 0 9 6 0 0 0 0] But, i need only non zero values. Can anyone tell me how to get only the non zero values from the vector.
thanks & regards, sravan

采纳的回答

Andrei Bobrov
Andrei Bobrov 2012-2-29
y = x(x~=0)
or
y = nonzeros(x)
way bad with loop
out = [];
for j1 = 1:numel(x)
if x(j1) ~= 0
out = [out;x(j1)];
end
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by