Hi, everyone,
Do you know some good MATLAB subroutines (direct solvers) for solving nonsymmetric Toeplitz linear systems ? I note that most direct solvers are only suitable for symmetric Toeplitz matrix, but recently, during the implementation of my numerical simulations, I need to solve a series of Nonsymmetric Toeplitz linear systems, i.e., A*x_i = b_i. i = 1:s. the size of A is from 8 to 256. I feel that this size is not large, so I do not want to consider the iterative solvers, such as gmres with circulant preconditioners. I think that if the subroutines can be used like the following form, it will be great:
>> y = nonsymToeplitz(c,r,x) % c is the first column of Toeplitz matrix A, and r is the first row of A, x is the rhs, i.e., y = A^{-1} x;
If you know some information for this, please tell me.