A way of doing that would be by using the following table:
| Number | Colour |
| 0 | 00.00.00 |
| 255 | 00.00.FF |
| 510 | 00.FF.FF |
| 765 | 00.FF.00 |
| 1020 | FF.FF.00 |
| 1275 | FF.FF.FF |
| 1530 | FF.00.FF |
| 1785 | FF.00.00 |
| 2040 | 00.00.00 |
Intermediate value are calculated by linear interpolation. This gives you 2040 different colours; nearby values are mapped to nearby numbers; and values far apart will have quite different values (with the caveat that the table above is cyclic). It shouldn't be too hard to turn this table into code.
If you just have 1000 numbers, multiply the numbers by 2 before consulting the above table, or just use a subset of the colours.
If you have a lot of numbers, much more numbers than there are different values, it probably pays to make a lookup table.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.