Need help combining 2 sequences
- Posted by Lnettnay Aug 28, 2012
- 1343 views
I have 2 sequences such as this:
voters = {{82,68,82,68,82},{82,68,68,68,82},{82,68,68,68,68}} colors = {{23,71,23,71,23},{23,71,71,71,23},{23,71,71,71,71}}
and I would like to combine them into 1 sequence like this
image = {{82,23,68,71,82,23,68,71,82,23},{82,23,68,71,68,71,68,71,82,23},{82,23,68,71,68,71,68,71,68,71}}
so that I can use
display_text_image({1,1}, image)
to display the image quickly.
I would like to do this without having to resort to a nested for loop but I can't find any sequence routine that will do what I want. I might not be understanding the supplied sequence routines.
TIA,
Lonny