Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Getting Matrix Row Values Back After Repeating Values Vector Has Been Calculated

3 Ansichten (letzte 30 Tage)
Shahrukh Kasi
Shahrukh Kasi am 8 Okt. 2017
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
I have a problem in which I have to find the repeating values in a matrix and then get the values of a row for which the values were repeating. I have completed the first part where the repeating values are fed into the vector valCount. I am not sure how to follow the second part in which I have to get the values of a row for which valCount >=2.
range_devices =
0 0 0
0 0 1
0 0 1
[row,col] = find(range_devices);
A = [row col];
uniqueVals = unique(A(:,1));
valCount = hist(A(:,1), uniqueVals)';

Antworten (0)

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by