hi everyone, i'm a new matlab user and i need toknow what does ismember do . can anyone help me please . thank you

1 件のコメント

Oleg Komarov
Oleg Komarov 2012 年 5 月 12 日
Read the documentation: doc ismember.

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

 採用された回答

the cyclist
the cyclist 2012 年 5 月 12 日

0 投票

I suggest you read
doc ismember
for the full documentation. A simple application is determining whether elements of one numeric vector are in another:
tf = ismember([1 2 4],[2 5])
would result in
tf = [0 1 0]
because 2 (from the first input) is the only element that appears in the second input.

6 件のコメント

Deborah Ukoha
Deborah Ukoha 2020 年 5 月 3 日
Thanks, but please could you give me an example of how to use this code in something like my work?
Rik
Rik 2020 年 5 月 3 日
Since you don't give the data from your work: no, of course not. It is not (yet) possible to read minds with Matlab.
Read the documentation for examples. If that doesn't help you need to make it possible for us to help you.
Image Analyst
Image Analyst 2020 年 5 月 3 日
Actually I think Walter has a beta copy of the Mind Reading Toolbox.
Walter Roberson
Walter Roberson 2020 年 5 月 4 日
Alpha copy, not beta copy. Goldarn thing keeps gettin stuck in the dadgum snow.
the cyclist
the cyclist 2020 年 5 月 4 日
I knew he was going to say that.
the cyclist
the cyclist 2020 年 5 月 4 日
Deborah, being less facetious now ...
As Rik suggested, there are several examples in the documentation for ismember. Do any of those help? If not, I would suggest opening a new question, provide some code that you are working on, and explain why you think ismember might help. You need to provide more detail, for us to be able to help you.

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by