How can i write x ∈ A

5 views (last 30 days)
Triveni
Triveni on 19 Dec 2015
Commented: Walter Roberson on 19 Dec 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 Comments
John D'Errico
John D'Errico on 19 Dec 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 on 19 Dec 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.

Sign in to comment.

Answers (1)

Walter Roberson
Walter Roberson on 19 Dec 2015
Edited: Walter Roberson on 19 Dec 2015
for x = reshape(A,1,[])
... do something ...
end
  1 Comment
Walter Roberson
Walter Roberson on 19 Dec 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))

Sign in to comment.

Tags

No tags entered yet.

Products

Community Treasure Hunt

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

Start Hunting!