I'm looking to write some code to read in a dense matrix from a file, and I was wondering what are the most common storage formats that my code should support?
Asked
Active
Viewed 808 times
6
2 Answers
0
Perhaps csv format, since I work mostly on csv so far during data analysis. You can also provide flexibility in delimiter.
Jeff's suggestion are more technical formats. They are all important if your library targets computational scientists and if you can get to them.
Mai
- 41
- 3
Certainly row-major vs. column-major ordering (for dense matrices) might be one distinction. Are you thinking about some other aspect (delimiters, binary, compressed) that could come into play? – hardmath Jul 16 '13 at 19:41