Method: TwoDMatrix#build_from_matrix
- Defined in:
- lib/csrmatrix.rb
#build_from_matrix(matrix) ⇒ Object
277 278 279 280 281 |
# File 'lib/csrmatrix.rb', line 277 def build_from_matrix(matrix) # builds a csr matrix a ruby matrix build_from_array(matrix.to_a()) return true end |