I tried constructing a toeplitz matrix in Python using scipy.linalg.toeplitz(c, r=None)
. Although I was successful, I was not able to maintain the Fortran ordering. I need to make sure that the toeplitz array being constructed maintain a Fortran ordering since I'm calling BLAS functions.
Is there a way I can do this?