From 7edcd01687435eb768ce3e60180f42d1709e1015 Mon Sep 17 00:00:00 2001 From: Tom Close Date: Wed, 21 Feb 2024 15:54:09 +1100 Subject: [PATCH] added text vector and text array format classes --- fileformats/datascience/data.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/fileformats/datascience/data.py b/fileformats/datascience/data.py index da85cfa..64918ad 100644 --- a/fileformats/datascience/data.py +++ b/fileformats/datascience/data.py @@ -7,6 +7,16 @@ class Data(File): binary = True +class TextVector(Data): + """space-delimited text file containing a single vector of values""" + binary = False + + +class TextArray(Data): + """space-delimited text file containing a 2-d array of values""" + binary = False + + class TextMatrix(Data): ext = ".mat" binary = False