Could you provide me an appropriate code for solving this question.Make a manipulate to create a list of between 5 and 50 equally spaced hues?
Regards.Yousef Alghamdi
Using Subdivide is convenient:
Hue /@ Subdivide[15]
Not that subdivide will return 16 items (15 partitions).
I would try this:
Manipulate[ Table[Hue[i/n], {i, 0, n - 1}], {n, 5, 50, 1}]