[Tutor] Baffled: why doesn't range work?
Sheila King
sheila@thinkspot.net
Thu, 26 Jul 2001 19:29:22 -0700
OK, it's working fine for me, now, too. Uh...my machine locked up a few
minutes ago. Then I had to reboot. (Love that Win98.) Now it works.
OK. <sigh>
--
Sheila King
http://www.thinkspot.net/sheila/
http://www.k12groups.org/
On Fri, 27 Jul 2001 13:43:14 +1200, "Brett Shand"
<brett@earthlight.co.nz> wrote about Re: [Tutor] Baffled: why doesn't
range work?:
:>
:> Now, something is very wrong. The matrix A should look like this:
:>
:> 0.2 0.2 0.2 0.2 0.2
:> 0.2 0.2 0.2 0.2 0.2
:
:works fine for me too:
:
:------------------------
:>>> import matrix
:>>> A = matrix.mtrx(2, 5, .2)
:>>> A.Display()
:0.2 0.2 0.2 0.2 0.2
:0.2 0.2 0.2 0.2 0.2
:>>>
:-------------------------
:
:brett