How to make a structure unique?
Afficher commentaires plus anciens
emp.x=[];
emp.info=[];
emp.fit=[];
pop=repmat(emp,1,1);
pop(1).x=[1 2 3 4];
pop(2).x=[3 2 1 4];
pop(3).x=[1 2 3 4];
pop(4).x=[2 1 3 4];
How to make the above structure (pop) unique?
The result would be like the following figure.

4 commentaires
Walter Roberson
le 25 Juin 2020
Will there ever be a case where the x values are not row vectors? Will there ever be a case when the row vectors are not the same length? For example will any of the entries ever be empty?
Md. Asadujjaman
le 25 Juin 2020
Walter Roberson
le 25 Juin 2020
X values are not a row vector.
Row vectors are the same length.
Which row vectors are the same length as each other if they are not the X values? (We know they are not the X values because you said that the X values are not row vectors.)
Md. Asadujjaman
le 25 Juin 2020
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Loops and Conditional Statements dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
