Hi Team!
Is there a way in Matlab to create a set of sets?
V = [[1 2] [1 3] [1 2 3]];
I tried quite a few methods but the only one that worked is to convert everything to a string and then do a bunch of string manipulations. I would expect that Matlab would have a better way to handle this. Also, the sets can vary in the number of elements.
Thanks for the assist!

 Accepted Answer

David - try using a cell array:
V = {[1 2] [1 3] [1 2 3]};

1 Comment

I knew Matlab had an solution. Thank you!

Sign in to comment.

More Answers (1)

Raghul Dhanesh
Raghul Dhanesh on 13 Dec 2020

0 votes

V = [[1 2] [1 3] [1 2 3]];

Products

Release

R2017a

Tags

Community Treasure Hunt

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

Start Hunting!