Ejemplo n.º 1
0
def save_array_to_file(array, path):
	"""
		Dumps an array to a file.
	"""
	file = open(path, "w")
	array.tofile(file)
	file.close()
Ejemplo n.º 2
0
def save_array_to_file(array, path):
    """
        Dumps an array to a file.
    """
    file = open(path, "w")
    array.tofile(file)
    file.close()
Ejemplo n.º 3
0
 def ArraySave (stream, array):
     array.tofile (stream)
Ejemplo n.º 4
0
def save_array_to_file(array, path):
    file = open(path, "w")
    array.tofile(file)
    file.close()
Ejemplo n.º 5
0
def save_array_to_file(array, path):
	file = open(path, "w")
	array.tofile(file)
	file.close()