Added documenntation to the docs folder and edited the mac bash script in response to tests

This commit is contained in:
Slater-Victoroff
2013-05-30 10:11:14 -04:00
parent 4335d7a208
commit 8b6bdb92c2
4381 changed files with 1098763 additions and 11 deletions

View File

@@ -0,0 +1,16 @@
__all__ = ['array2string']
from numpy import array2string as _array2string
def array2string(a, max_line_width=None, precision=None,
suppress_small=None, separator=' ',
array_output=0):
if array_output:
prefix="array("
style=repr
else:
prefix = ""
style=str
return _array2string(a, max_line_width, precision,
suppress_small, separator, prefix, style)