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

1 commentaire

Oleg Komarov
Oleg Komarov le 12 Mai 2012
Read the documentation: doc ismember.

Connectez-vous pour commenter.

 Réponse acceptée

the cyclist
the cyclist le 12 Mai 2012

0 votes

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 commentaires

Deborah Ukoha
Deborah Ukoha le 3 Mai 2020
Thanks, but please could you give me an example of how to use this code in something like my work?
Rik
Rik le 3 Mai 2020
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 le 3 Mai 2020
Actually I think Walter has a beta copy of the Mind Reading Toolbox.
Walter Roberson
Walter Roberson le 4 Mai 2020
Alpha copy, not beta copy. Goldarn thing keeps gettin stuck in the dadgum snow.
the cyclist
the cyclist le 4 Mai 2020
I knew he was going to say that.
the cyclist
the cyclist le 4 Mai 2020
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.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by