Function ismember - set operations, Other Engineering

Assignment Help:

function ismember - set operations:

The function ismember receives two vectors as input arguments, and returns a logical vector which is of similar length as the first argument, having 1 for true when the element in the first vector is also in the second, or 0 for false when not.

The order of arguments matters for this function.

>> v1

v1 =

2 3 4 5 6

>> v2

v2 =

1 3 5 7

>> ismember(v1,v2)

ans =

0 1 0 1 0

>> ismember(v2,v1)

ans =

0 1 1 0

 

By using the answer from the ismember function as an index into the first vector argument will return similar result as the intersect function.

>> logv = ismember(v1,v2)

logv =

0 1 0 1 0

>> v1(logv)

ans =

   3         5

>> logv = ismember(v2,v1)

logv =

0 1 1 0

>> v2(logv)

ans =

   3     5


Related Discussions:- Function ismember - set operations

Cascaded, circit diagram and operation

circit diagram and operation

Digital frequency meter, Explain block diagrams of digital frequency meter ...

Explain block diagrams of digital frequency meter and describe function of each part

Pitot intakes - aircraft maintenance , Pitot intakes: This intake is su...

Pitot intakes: This intake is suitable for subsonic or low supersonic speeds. Examples, 707, 747, A300B, Tristar, etc. The intake is usually short and is very efficient becau

Kalman filtering , Kalman Filtering  All of the measurements generat...

Kalman Filtering  All of the measurements generated by the seeker and the navigation system/rate gyros are noisy, and therefore need to be filtered.  The Kalman filter, a

Four stroke diesel engine, FOUR STROKE DIESEL ENGINE: T he cycle of ev...

FOUR STROKE DIESEL ENGINE: T he cycle of events that takes place in a four -stroke diesel engine has been shown. Unlike the petrol which drawn in a mixture of air and petrol,

Homework, Assume that a movie is two hours long, that the frame rate is 30 ...

Assume that a movie is two hours long, that the frame rate is 30 frames per second, and that the resolution per frame is 1080i (1920×1080 pixels per frame), and that each pixel is

Mass balance reactions, A continuous fractionating column separates benzene...

A continuous fractionating column separates benzene and toluene into two product streams. We were given all the mass fractions which makes this question easy because all we must ca

Bravis lattice, Bravis lattice or Bravis crystal system: The ideas of space...

Bravis lattice or Bravis crystal system: The ideas of space lattice was introduced by Bravis in 1990.According to this there are 14 possible types of space lattices in the seven ba

Final project, can u give idea about project in agriculture

can u give idea about project in agriculture

Evacuation in a hospital - fire protection engineering, Evacuation in a hos...

Evacuation in a hospital - fire protection engineering: An evacuation in a hospital is very unlikely to require anyone to go outside. The buildings are split into numerous fir

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd