how to find index of the double
82 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Muhammad
le 29 Mai 2021
Modifié(e) : Image Analyst
le 11 Nov 2021
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/634800/image.png)
i want to find the indese of the following data
what should be the code for this
1 commentaire
Jan
le 29 Mai 2021
The question is not clear. What are "the following data"? Do you want to sort the vector?
Réponse acceptée
Image Analyst
le 29 Mai 2021
Modifié(e) : Image Analyst
le 11 Nov 2021
@Muhammad SULAMAN, you ask "i am tring to find the index of all the data written in double data", so here is a list of all the indexes of all the data in your vector:
allIndexes = 1 : length(covid);
To find the index of a certain, specific value in covid, use find():
index = find(covid == 1122);
0 commentaires
Plus de réponses (1)
Asmit Singh
le 29 Mai 2021
Modifié(e) : Image Analyst
le 11 Nov 2021
In my understanding you are trying to find an index of a particular value in double. You can use the find function. You can know more using the documentation here. Here is code for a simple example.
% Load your covid double data into "a".
a
% Search for the value 1000
index = find(a == 1000);
4 commentaires
ganesh gng
le 11 Nov 2021
In the following example if I want to find data 1122, output should be its index which is 6,
Is there any way to do this?
Jan
le 11 Nov 2021
Modifié(e) : Image Analyst
le 11 Nov 2021
Use the code show in this answer already:
index = find(covid == 1122)
Voir également
Catégories
En savoir plus sur Biological and Health Sciences dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!