Hi
is the Numerical Python tutorial maintained?
seams to have some errors and no email to mail them to when found.
if interested, read about the errors below
*************** *************** *************** *************** ****
(1)
Creating arrays from scratch
the html showing code lines below on the top of text lines from the
surrounding paragraphs, I was surprise to be able to copy and paste
the lines below as they are not visually clear on the page.
[color=blue][color=green][color=darkred]
>>> x,y,z = 1,2,3
>>> a = array([x,y,z]) # integers are enough for 1, 2 and 3
>>> print a[/color][/color][/color]
[1 2 3][color=blue][color=green][color=darkred]
>>> a = array([x,y,z], Float) # not the[/color][/color][/color]
(2)
Universal Functions[color=blue][color=green][color=darkred]
>>> print add.reduce([1,2,4,5])[/color][/color][/color]
12 # 1 + 2 + 3 + 4 + 5 <---- is
12 # 1 + 2 + 4 + 5 <---- should be
is the Numerical Python tutorial maintained?
seams to have some errors and no email to mail them to when found.
if interested, read about the errors below
*************** *************** *************** *************** ****
(1)
Creating arrays from scratch
the html showing code lines below on the top of text lines from the
surrounding paragraphs, I was surprise to be able to copy and paste
the lines below as they are not visually clear on the page.
[color=blue][color=green][color=darkred]
>>> x,y,z = 1,2,3
>>> a = array([x,y,z]) # integers are enough for 1, 2 and 3
>>> print a[/color][/color][/color]
[1 2 3][color=blue][color=green][color=darkred]
>>> a = array([x,y,z], Float) # not the[/color][/color][/color]
(2)
Universal Functions[color=blue][color=green][color=darkred]
>>> print add.reduce([1,2,4,5])[/color][/color][/color]
12 # 1 + 2 + 3 + 4 + 5 <---- is
12 # 1 + 2 + 4 + 5 <---- should be
Comment