Skip to content

Commit de57bfe

Browse files
authored
Update README.md (#84)
1 parent 3082fbd commit de57bfe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# BlockBandedMatrices.jl
2-
A Julia package for representing block-block-banded matrices and banded-block-banded matrices
2+
A Julia package for representing block-banded matrices and banded-block-banded matrices
33

44
[![Travis](https://travis-ci.org/JuliaMatrices/BlockBandedMatrices.jl.svg?branch=master)](https://travis-ci.org/JuliaMatrices/BlockBandedMatrices.jl)
55
[![Build status](https://ci.appveyor.com/api/projects/status/a300xe23ltjbebbf?svg=true)](https://ci.appveyor.com/project/dlfivefifty/blockbandedmatrices-jl)
@@ -17,7 +17,7 @@ storing the entries in the non-zero bands.
1717

1818

1919
A `BlockBandedMatrix` is a subtype of `BlockMatrix` of [BlockArrays.jl](https://github.com/JuliaArrays/BlockArrays.jl)
20-
whose non-zero blocks are banded. We can construct a `BlockBandedMatrix` as follows:
20+
whose layout of non-zero blocks is banded. We can construct a `BlockBandedMatrix` as follows:
2121
```julia
2222
l,u = 2,1 # block bandwidths
2323
N = M = 4 # number of row/column blocks
@@ -38,5 +38,5 @@ N = M = 4 # number of row/column blocks
3838
cols = rows = 1:N # block sizes
3939
BandedBlockBandedMatrix(Zeros(sum(rows),sum(cols)), rows,cols, (l,u), (λ,μ)) # creates a banded-block-banded matrix of zeros
4040
BandedBlockBandedMatrix(Ones(sum(rows),sum(cols)), rows,cols, (l,u), (λ,μ)) # creates a banded-block-banded matrix with ones in the non-zero entries
41-
BandedBlockBandedMatrix(I, rows,cols, (l,u), (λ,μ))) # creates a banded-block-banded identity matrix
41+
BandedBlockBandedMatrix(I, rows,cols, (l,u), (λ,μ)) # creates a banded-block-banded identity matrix
4242
```

0 commit comments

Comments
 (0)