Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a quick way (without the overhead of using a GUI or graphics module) to visually render 2d and 3d lists.

For example if I have a 2d array of zeros and ones, I would like to draw a black and white grid according to this array.

I am looking for a module that allows me to do these thing in simple ways. Similar to the easiness of that matplotlib allows drawing graphs.

share|improve this question
matplotlib uses a gui. Do you mean you want to print it to the console!? – samb8s Jul 21 '11 at 10:46
No, I just do not want to mess with gui programming myself. – Artium Jul 21 '11 at 10:51

2 Answers

up vote 6 down vote accepted

The command matshow in matplotlib displays a matrix:

import pylab as p
p.matshow(p.array([[0,1],[1,1]]),cmap="Greys") ; p.show()

This would work for 2d lists. As for 3d lists, I'm not sure I fully understand how you're planning on visualising them.

share|improve this answer
This is exactly what I was looking for. Regarding 3d, I guess that half transparent cubes and the ability to freely rotate the model would be intuitive enough, but this is too much I am asking for... – Artium Jul 21 '11 at 11:01
Hmm ... You could try MayaVi. The overhead in coding time would be quite large, though, I think. – Pascal Bugnion Jul 21 '11 at 11:04

Are you looking for something to run on command line? If that is so, you could simply write your own little function in a very few lines. Something like this:

>>> matrix = [[0,1,0],[1,1,1],[0,0,1]]
>>> convert = lambda x : '■ ' if x == 1 else '□ '
>>> for row in matrix:
...     print ''.join([convert(el) for el in row])
... 
□ ■ □ 
■ ■ ■ 
□ □ ■ 
share|improve this answer
1  
Neat - I guess the only problem is if the matrix size exceeds the line length of your terminal. – Pascal Bugnion Jul 21 '11 at 11:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.