rluce / tlcomp

Computing with Toeplitz and Toeplitz-like matrices in Matlab
MIT License
1 stars 0 forks source link

Class organization refactor #14

Open rluce opened 7 years ago

rluce commented 7 years ago

At current state both TLMat and ToepMat are sitting in one monolithic file. Matlab's indention rules (class/methods/fuction) induce a lot of whitespace noise in the code, making it difficult to maintain the 80 char line width limit.

Instead the two classes should sit in the own directories, with each method becoming its own file. This is described in the Matlab documentation for OO development.