How to replace name with number

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)

[~, ~, xnum] = unique(x, 'stable')

3 Comments

sorry sir..
but i did't understand :(
which tipe of function is that? IT WORKS!!! :D but how did you do that =???
In matlab type
doc unique
to read its documentation

Sign in to comment.

Categories

Asked:

on 6 Oct 2016

Commented:

on 6 Oct 2016

Community Treasure Hunt

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

Start Hunting!