Mostrar comentarios más antiguos
G=[1 0]with I={[1 0;1 1;0 0;1 0;1 1;0 1;1 0 random sequence]} i need to compare them and count number of matched bits
Respuestas (2)
the cyclist
el 23 de Jul. de 2011
0 votos
You can use the ismember() command, with the 'rows' option.
3 comentarios
mahaveer hanuman
el 23 de Jul. de 2011
the cyclist
el 23 de Jul. de 2011
Fangjun Jiang has kindly written the exact code you need. What's the problem?
Andrei Bobrov
el 23 de Jul. de 2011
arrayfun(@(j1)isequal(I(j1,:),G),(1:size(I,1))')
Fangjun Jiang
el 23 de Jul. de 2011
Probably there is no need to make I a cell array.
G=[1 0];
I=[1 0;1 1;0 0;1 0;1 1;0 1;1 0];
Compare=ismember(I,G,'rows');
Count=sum(Compare)
2 comentarios
mahaveer hanuman
el 23 de Jul. de 2011
Fangjun Jiang
el 23 de Jul. de 2011
Put in your G and I and follow the code. I've modified the code.
Categorías
Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!