scipy.sparse
scipy.sparse module
csr_matrix
A = sparse.csr_matrix([1 2 0; 0 0 3; 4 0 5])
v = [1, 0, -1]
println(A.dot(v))
[1, -3, -1]
scipy.sparse module
A = sparse.csr_matrix([1 2 0; 0 0 3; 4 0 5])
v = [1, 0, -1]
println(A.dot(v))
[1, -3, -1]
Settings
This document was generated with Documenter.jl version 0.27.23 on Sunday 4 December 2022. Using Julia version 1.8.3.