Removing a specific number from vector

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.

回答 (4 件)

Gurudatha Pai
Gurudatha Pai 2011 年 6 月 17 日

5 投票

A = 4;
Z = [1 9 2 3 4 5]
Z1 = Z(find(Z~=A))
that should work
Walter Roberson
Walter Roberson 2011 年 6 月 17 日

3 投票

Z(Z==A) = [];
Warning: if you have floating point numbers instead of integers, you will usually need to compare with a tolerance instead of ==
Tiasa Ghosh
Tiasa Ghosh 2018 年 7 月 25 日

1 投票

You can also use setdiff function.
a=4;
z=[1 9 2 3 4 5];
setdiff(z,a)

2 件のコメント

Gospel Oh
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
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
Richard Barrett-Jolley 2018 年 7 月 13 日

0 投票

Yes, that would work, but I would recommend simply:
Z=Z(Z~=A);

4 件のコメント

Walter Roberson
Walter Roberson 2018 年 7 月 17 日
I don't think I've seen anyone benchmark expressing as a subset copy, compared to expressing as a deletion such as I did.
Personally I find the deletion easier to read.
Walter Roberson
Walter Roberson 2019 年 4 月 30 日
My testing suggests that Z=Z(Z~=A) is faster than deleting from Z, taking about 82% as long, at least for longer arrays.
huda nawaf
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
Walter Roberson
Walter Roberson 2022 年 8 月 8 日
Z = Z(~ismember(Z, A));

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeEntering Commands についてさらに検索

質問済み:

2011 年 6 月 17 日

コメント済み:

2022 年 8 月 8 日

Community Treasure Hunt

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

Start Hunting!

Translated by