Removing a specific number from vector
261 次查看(过去 30 天)
显示 更早的评论
Hi Everyone,
Suppose I have the following
A = 4
and
Z = [1 9 2 3 4 5]
how do I remove the value A from Z, to get
Z = [1 9 2 3 5]
Regards,
Ulrik.
0 个评论
回答(4 个)
Walter Roberson
2011-6-17
Z(Z==A) = [];
Warning: if you have floating point numbers instead of integers, you will usually need to compare with a tolerance instead of ==
0 个评论
Tiasa Ghosh
2018-7-25
You can also use setdiff function.
a=4;
z=[1 9 2 3 4 5];
setdiff(z,a)
2 个评论
Gospel Oh
2018-11-15
If the function were to be put into MatLab, the answer actually comes out to be an ordered version, missig the a:
ans = 1 2 3 5 9
close, but not quite
Paul Smits
2019-4-26
You may pass 'stable' as additional input to setdiff, to prevent sorting:
a=4;
z=[1 9 2 3 4 5];
setdiff(z,a,'stable')
Richard Barrett-Jolley
2018-7-13
Yes, that would work, but I would recommend simply:
Z=Z(Z~=A);
4 个评论
huda nawaf
2022-8-7
HI
Im facing the same problem, but the size of A is more than one.
so Z=Z(Z~=A); does not work. Is there an alternative?
Thanks
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Whos 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!