write_3_images#

pyflct.utils.write_3_images(filename, array1, array2, array3, order='row')[source]#

Write three arrays of the same size to a dat file.

Parameters:
  • filename (string) – The name of dat file.

  • 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”.