Esempio 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()
Esempio 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()
Esempio n. 3
0
 def ArraySave (stream, array):
     array.tofile (stream)
Esempio n. 4
0
def save_array_to_file(array, path):
    file = open(path, "w")
    array.tofile(file)
    file.close()
Esempio n. 5
0
def save_array_to_file(array, path):
	file = open(path, "w")
	array.tofile(file)
	file.close()