Skip to content

Commit 4cfd7c9

Browse files
authored
Update README.md
1 parent 71e657d commit 4cfd7c9

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

README.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,8 @@ as well as identity matrices. This package exports the following types:
1414

1515

1616
The primary purpose of this package is to present a unified way of constructing
17-
matrices. For example, to construct a 5-by-5 `CLArray` of all zeros, one would use
18-
```julia
19-
julia> CLArray(Zeros(5,5))
20-
```
21-
Because `Zeros` is lazy, this can be accomplished on the GPU with no memory transfer.
22-
Similarly, to construct a 5-by-5 `BandedMatrix` of all zeros with bandwidths `(1,2)`, one would use
17+
matrices.
18+
For example, to construct a 5-by-5 `BandedMatrix` of all zeros with bandwidths `(1,2)`, one would use
2319
```julia
2420
julia> BandedMatrix(Zeros(5,5), (1, 2))
2521
```

0 commit comments

Comments
 (0)