Skip to content

Commit

Permalink
added text vector and text array format classes
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose committed Feb 21, 2024
1 parent 0ad1c03 commit 7edcd01
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions fileformats/datascience/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7edcd01

Please sign in to comment.