Effacer les filtres
Effacer les filtres

Find given element in column 1 with "find" function.

3 vues (au cours des 30 derniers jours)
Navya Snigdha Thumma
Navya Snigdha Thumma le 24 Juil 2015
Commenté : bio lim le 24 Juil 2015
Hello all, I am trying to use "find" function and I want to find the given number in 1st column only. For example if I have a matrix A= [ 1 1 3;1 2 3;1 2 1]; and I want to find 1's in column 1 by using P=find(A==1). My ans is P= [1;2;3;4;9] which are the indexes of 1. I want only 1st column output which should be [1;2;3]. Please help if you have any idea. Thank you.

Réponse acceptée

bio lim
bio lim le 24 Juil 2015
Modifié(e) : bio lim le 24 Juil 2015
A = [ 1 1 3;1 2 3;1 2 1];
P = find(A(:,1)==1);
  2 commentaires
Navya Snigdha Thumma
Navya Snigdha Thumma le 24 Juil 2015
Modifié(e) : Navya Snigdha Thumma le 24 Juil 2015
Thankyou very much. It worked.
bio lim
bio lim le 24 Juil 2015
Glad to help. :)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Startup and Shutdown 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!

Translated by