pub type CooSparseMatrixReal = (Vec<f64>, (Vec<usize>, Vec<usize>));
Real sparse matrix in coordinate (COO) format.
Input in the form (value_vector, (row_index_vector, column_index_vector))