Define
A = {{'str_a','str_b'},{'str_b','str_c'},{'str_a'},{'str_b','str_c','str_d'}}
I want to find the unique elements of the above. That is, I want the output to be
{'str_a','str_b','str_c','str_d'}
Applying unique results in the following error
unique(A)
Error using cell/unique (line 85)
Input A must be a cell array of strings.