How to replace name with number

3 views (last 30 days)
Light.16
Light.16 on 6 Oct 2016
Commented: Guillaume on 6 Oct 2016
Hello guys !!
I've a question for you. I got a cell array like that x = {'white' 'red' 'blue' 'yellow'}. My intention is to replace my cell array with a number vector, so that white become 1, red become 2.. and so on. How can i do that?
ty

Answers (1)

Thorsten
Thorsten on 6 Oct 2016
[~, ~, xnum] = unique(x, 'stable')
  3 Comments
Light.16
Light.16 on 6 Oct 2016
which tipe of function is that? IT WORKS!!! :D but how did you do that =???
Guillaume
Guillaume on 6 Oct 2016
In matlab type
doc unique
to read its documentation

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!