Daniel-Diaz / matrix

A Haskell native implementation of matrices and their operations.
BSD 3-Clause "New" or "Revised" License
35 stars 31 forks source link

Added symmetric Read/Show class implementations for serialization and deserialization #49

Open jtimmons opened 7 years ago

jtimmons commented 7 years ago

I ended up adding symmetric implementations for the Read and Show classes in the library so that I could easily serialize/deserialize Matrix objects. I figured that it could be useful to others in the future so I'm creating a PR for the changes that I made.

I left the prettyMatrix function as-is so that users still have the option of printing human-readable Matrices.