How can I write a random function with names?

4 visualizaciones (últimos 30 días)
Martha Spadaccino
Martha Spadaccino el 15 de Mayo de 2019
Comentada: Martha Spadaccino el 16 de Mayo de 2019
Hi all. I'm very new to MatLab programming. I have to write a random function that returns 1 pair of colour name. How do I do?
  2 comentarios
Rik
Rik el 15 de Mayo de 2019
Have a read here and here. It will greatly improve your chances of getting an answer. Also: if you're new, you will probably benefit from doing a Matlab tutorial, like e.g. this one.
Martha Spadaccino
Martha Spadaccino el 16 de Mayo de 2019
Thank you very much! I have already seen these topics before write my question and I didn't find anything.

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 16 de Mayo de 2019
First off, put together the data from https://blog.xkcd.com/2010/05/03/color-survey-results/ and https://en.wikipedia.org/wiki/List_of_colors:_A%E2%80%93F and https://digitalsynopsis.com/design/color-thesaurus-correct-names-of-shades/ and other sites, all to create a large list of color names. I suggest converting it all to lowercase.
Then put together some code that, for every call, creates a random vector of characters that are valid in MATLAB statements (not much point in permitting anthing outside of space (char(32)) to ~ (char(126)).
Then loop. At each step, generate a character vector, add '@()' in front of it, and use str2func() on that. What that gives you is a function handle. Then try/catch/end on executing the function handle with a single output and assigning the result to a variable. If the result is a character vector or is a string object, then convert to lowercase and ismember() it against the large list of color names. If you get a match, then you have found your random function that returns a color name.
... this might take rather a lot of executions. Shorter color names are more probable, but it is certainly not impossible that the function will happen to generate 'ballet slipper' on its second run instead of several tens of thousand of runs before it accidentally emits 'red'
  2 comentarios
Stephen23
Stephen23 el 16 de Mayo de 2019
"First off, put together the data from ... and other sites..."
You can easily save yourself the trouble of doing that (I've already done it for you):
Martha Spadaccino
Martha Spadaccino el 16 de Mayo de 2019
Thank you so much for the answer. I do create a series of opponents colors, so I do choice only few color and have as output a pairs of then without have the same colors in pair. How can I do?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by