How can I write a random function with names?

4 vues (au cours des 30 derniers jours)
Martha Spadaccino
Martha Spadaccino le 15 Mai 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 commentaires
Rik
Rik le 15 Mai 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 le 16 Mai 2019
Thank you very much! I have already seen these topics before write my question and I didn't find anything.

Connectez-vous pour commenter.

Réponse acceptée

Walter Roberson
Walter Roberson le 16 Mai 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 commentaires
Stephen23
Stephen23 le 16 Mai 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 le 16 Mai 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?

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by