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

 采纳的回答

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 个评论

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.
Actually I think Walter has a beta copy of the Mind Reading Toolbox.
Alpha copy, not beta copy. Goldarn thing keeps gettin stuck in the dadgum snow.
I knew he was going to say that.
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 Exchange 中查找有关 Matrix Indexing 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by