Type Alias CooSparseMatrixReal

Source
pub type CooSparseMatrixReal = (Vec<f64>, (Vec<usize>, Vec<usize>));
Expand description

Real sparse matrix in coordinate (COO) format.

Input in the form (value_vector, (row_index_vector, column_index_vector))