Matrix element comparision ?

4 vues (au cours des 30 derniers jours)
anshuman mishra
anshuman mishra le 13 Déc 2019
i have a matrix:
3 0
1 2
1 4
i can find the smallest element in 1st column i.e. 1 & 0 in the second column.
I need to assign a variable as 0 for each multiple similar element in a single column i.e 1 & 1 in the 1st column & assign 1 to only one unique element in single column i.e 0 in 2nd column.
  3 commentaires
anshuman mishra
anshuman mishra le 13 Déc 2019
Modifié(e) : anshuman mishra le 13 Déc 2019
i mean to say lets take a variable v.
Then required answer would be v =0 1 ( 0 as in multiple similar element in a single column i.e 1 & 1 in the 1st column & 1 to only one unique element in single column i.e 0 in 2nd column.
anshuman mishra
anshuman mishra le 13 Déc 2019
Sorry i typed traversal instead of element. My bad :)

Connectez-vous pour commenter.

Réponse acceptée

Fangjun Jiang
Fangjun Jiang le 13 Déc 2019
V=[3 0;1 2;1 4];
out=sum(M==min(M))==1

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Produits


Version

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by