Speeding Up Symmetric Matrix With Cython

In the previous post, a Python implementation of a symmetric matrix was described. This implementation saves approximately 50% of memory space. However, when compared with a matrix created via the numpy module, the average access time for our implementation was much worse than the average access time for the numpy matrix. In this post, we will speed up the access time by using Cython.
Read More