write_3_images#
- pyflct.utils.write_3_images(filename, array1, array2, array3, order='row')[source]#
Write three arrays of the same size to a
datfile.- Parameters:
filename (
string) – The name ofdatfile.array1 (
numpy.ndarray) – The first array to be stored.array2 (
numpy.ndarray) – The second array to be stored.array3 (
numpy.ndarray) – The third array to be stored.order ({"row" | "column"}, optional) – The order in which the array elements are stored that is whether they are stored as row major or column major. Defaults to “row”.