# ==============================================================================
"""MATSTAT : perform statistical operations on a matrices stored in CSV files"""
# ==============================================================================
__author__  = "Christophe Schlick modified by Philippe Blasi"
__version__ = "1.0"
__date__    = "2022-11-12"
__usage__   = """
User input : <filename> [filename ...]
             where filename = text file containing a set of integer or float values
App output : The matrix stored in each provided CSV file is displayed with
             additional rows showing the result of statistical operations
             performed on each column: min, max, mean and deviation"""
# ==============================================================================
from ezCLI import *
# ------------------------------------------------------------------------------
def matstat(name:str) -> str:
  """perform statistical operations on a matrices stored in file 'name'"""
  pass
# ------------------------------------------------------------------------------
def parser(command:str) -> str:
  """parse 'command' and return content of provided files with line numbering"""
  pass
# ==============================================================================
if __name__ == '__main__':
  userloop(parser, "Enter <filename> [filename ...]")
# ==============================================================================
