I'm trying to export a 2-D C array to a numpy 'ndarray' object, in a way that exposes the C data. What complicates matters is that this 2-D array is not contiguous in memory, so I cannot just call ...
I ran into a bit of a roadblock trying to code a program to perform simple matrix operations. The catch was that I wanted to be able to let the user specify the dimension of the matrices on the fly.