We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add following data to CSRMatrix_ field:
CSRMatrix_
max_nnz_in_row Maximum number of non zero entries in a row
max_nnz_in_row
max_nnz_in_col Maximum number of non zero entries in a col
max_nnz_in_col
Add a method to get the bandwidth of the sparse matrix, which is defined as:
$$ m_{l} = max( \left [(i-j); a(i,j) \ne 0 \right ]) $$
$$ m_{u} = max( (j-i); a(i,j) \ne 0 ) $$
where,
Currently, we are using Sparsekit lib for matvec.
Instead Add following methods
The text was updated successfully, but these errors were encountered:
Updates in CSRMatrix
b81e5b0
- Adding SetMethods - Working on issue #264
10e14d3
- Adding Scal method - working on issue #264
vickysharma0812
shishiousan
No branches or pull requests
Sparse info
Add following data to
CSRMatrix_
field:max_nnz_in_row
Maximum number of non zero entries in a rowmax_nnz_in_col
Maximum number of non zero entries in a colAdd a method to get the bandwidth of the sparse matrix, which is defined as:
where,
Get compact row
Matrix vector multiplication:
Currently, we are using Sparsekit lib for matvec.
Instead Add following methods
Others
Misc
The text was updated successfully, but these errors were encountered: