Skip to content

Fix typo #152

New issue

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

Merged
merged 1 commit into from
Jun 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/sparsevector.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ a *sorted* vector of non-zero indices, and a vector of non-zero values.
For instance, the Vector `[5, 6, 0, 7]` can be represented as
```julia
SparseVector(4, [1, 2, 4], [5, 6, 7])
````
```
This indicates that the index 1 is 5, the index 2 is 6, the index 3 is `zero(Int)`, and index 4 is 7.

It may be more convenient to create sparse vectors directly from dense vectors using `sparse` as
Expand Down