How can i write x ∈ A

5 visualizzazioni (ultimi 30 giorni)
Triveni
Triveni il 19 Dic 2015
Commentato: Walter Roberson il 19 Dic 2015
B = [30 60 30 60 60 30];
[No,Th] = hist(B,unique(B));
A = Th;
i want to right in other program
x ∈ A
  5 Commenti
John D'Errico
John D'Errico il 19 Dic 2015
Yes. We know what set membership means in mathematics. But what you are not telling us is what you want to do. Explain yourself clearly.
Triveni
Triveni il 19 Dic 2015
Actually i have to create bound in Genetic Algorithm Optimization....I need only values of subset of A. My B matrix is changing B(:,:,k). And by using unique values of B, create x matrix.

Accedi per commentare.

Risposte (1)

Walter Roberson
Walter Roberson il 19 Dic 2015
Modificato: Walter Roberson il 19 Dic 2015
for x = reshape(A,1,[])
... do something ...
end
  1 Commento
Walter Roberson
Walter Roberson il 19 Dic 2015
unique(x) gives the elements of X. In the context you give in your comment, the values are going to be the same as 1 : length(unique(B))

Accedi per commentare.

Tag

Non è stata ancora inserito alcun tag.

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by