I wonder how to do matrix multiplication if one of the matrices is sparse. the mul(A,B) command does not support sparse matrices as far as I know, Should I write my own routine ?
A sparse matrix such as lil_matrix B full matrix, any regular matrix or ndarray.
C = A*B , * being matrix multiplication ?