Re: [Tutor] Matrix

2004-12-19 Thread Rob Kapteyn
Juan: Thanks for the tip, but the correct address seems to be: http://www.scipy.com/ the .org does not answer. Now I have to check out the graphing tools they have:-) Rob On Dec 19, 2004, at 8:01 PM, Juan Shen wrote: Try SciPy. http://www.scipy.org/ It has mat class to handle matrix and much els

Re: [Tutor] Matrix

2004-12-19 Thread Rob Kapteyn
Hello to the list ! A list of lists is the most logical construction. But -- you don't need to assemble the rows separately -- this works too: >>> my_matrix_as_lists = [ [4, 6, 8, 1],\ ... [2, 5, 1, 3],\ ... [2, 1, 2, 8] ]