photo

RONG


Last seen: environ un an il y a Actif depuis 2024

Followers: 0   Following: 0

Statistiques

MATLAB Answers

0 Questions
2 Réponses

RANG
92 988
of 300 302

RÉPUTATION
0

CONTRIBUTIONS
0 Questions
2 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
0

RANG
 of 20 911

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG

of 168 040

CONTRIBUTIONS
0 Problèmes
0 Solutions

SCORE
0

NOMBRE DE BADGES
0

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
How can I find index of element in array?
firstIndex = find(X == 5, 1);

environ un an il y a | 0

Réponse apportée
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);

environ un an il y a | 0