Search array for largest value of the desired format

1 Ansicht (letzte 30 Tage)
lightroman
lightroman am 8 Nov. 2017
Bearbeitet: lightroman am 8 Nov. 2017
I have an array, data, I need to search through it to find 1000 , 2000 , 3000 , ... n
As many as exist in the array. 1000 will always exist and 32000 is the highest.
output should be 1 if just 1000, 2 if 1000 and 2000, 3 if 1000 2000 and 3000 exist in the array, data.
I can figure it out with a while and nested for loop but its too inefficient for what i am attempting to do.

Akzeptierte Antwort

KL
KL am 8 Nov. 2017
Bearbeitet: KL am 8 Nov. 2017
Something like,
A = [1 2 1000 3 4 2000 4 3 3000];
B = (1:10)*1000;
res = nnz(ismember(A,B));
and if there are more than one of 1000/2000/etc, the value of res will be subsequently be higher.
  1 Kommentar
lightroman
lightroman am 8 Nov. 2017
Bearbeitet: lightroman am 8 Nov. 2017
well 1000 can increase all the way to 32000 but really just any multiple of 1000.
Sorry that little detail was hard to read in 1000,2000,3000,....
EDIT: got it actually this will work thanks

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Multidimensional Arrays finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by