Determine if an element in array of doubles start with patten
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Mohamed Asaad
am 12 Feb. 2023
Kommentiert: Adam Danz
am 12 Feb. 2023
Hey,
I need to find the index of the first element that starts with a specific number. So in this picture for example, if i give 8 as an input, i want the code to give me back the index of the first 8. that it meets which would be 163 in this case.
0 Kommentare
Akzeptierte Antwort
Voss
am 12 Feb. 2023
idx = find(floor(data)==val,1)
where data is your array and val is what you're looking for, e.g., 8.
1 Kommentar
Adam Danz
am 12 Feb. 2023
Neither of our current answers work with negative values although that may not be a problem in the OP's use case.
The benefit of this answer over mine is that val can be any number of digits. You could search for "82" in an array of values. It would match the third element of [8.2 820 82 8200].
The benefit of my answer over this one is that only the first digit is considered in the search but is limited to single-digit target values (which could easily by adapted). You could search for the number 8 in this vector and it would match the 3rd element. [0.8, 18, 8203, 8, 80].
Weitere Antworten (1)
Adam Danz
am 12 Feb. 2023
Bearbeitet: Adam Danz
am 12 Feb. 2023
Here's a demo that finds the first value in a vector that has a first digit equal to 4. The values can have any number of digits to the left of the decimal although this doesn't work with negative values.
rng default
val = sort(rand(1,10).*randi(500,1,10))'
target = 4;
firstDigit = cellfun(@(v)v(1),""+val)-'0'
firstDigitIdx = find(firstDigit == target,1,'first')
0 Kommentare
Siehe auch
Kategorien
Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!