photo

RONG


Last seen: 4 Monate vor Aktiv seit 2024

Followers: 0   Following: 0

Statistik

  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
How can I find index of element in array?
firstIndex = find(X == 5, 1);

4 Monate vor | 0

Beantwortet
How can I find index of element in array?
% Suppose X is your array X = [3, 5, 7, 5, 9]; % Find the index of the element 5 index = find(X == 5);

4 Monate vor | 0