Skip to content

Commit 7956b1c

Browse files
committed
update Project
1 parent e76367a commit 7956b1c

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ BlockBandedMatrices = "0.4"
2020
FillArrays = "≥ 0.5.0"
2121
InfiniteArrays = "0.1"
2222
IntervalArithmetic = "≥ 0.15.2"
23-
LazyArrays = "0.8"
23+
LazyArrays = "0.8, 0.9"
2424
MatrixFactorizations = "0.1"
2525
julia = "0.7, 1"

examples/toeplitz.jl

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ p =plot(); symbolplot!(A)
4848
# Non-normal
4949
###
5050

51-
A = BandedMatrix(-1 => Vcat(Float64[], Fill(1/4,∞)), 0 => Vcat([0.9],Fill(0,∞)), 1 => Vcat(Float64[], Fill(1,∞)))
52-
qlplot(A; title="A", linewidth=0, x=range(-2,2; length=200), y=range(-2,2;length=200))
51+
A = BandedMatrix(-1 => Vcat(Float64[], Fill(1/4,∞)), 0 => Vcat([1im],Fill(0,∞)), 1 => Vcat(Float64[], Fill(1,∞)))
52+
qlplot(A; title="A", linewidth=0, x=range(-2,2; length=100), y=range(-2,2;length=100))
5353
symbolplot!(A; linewidth=2.0, linecolor=:blue, legend=false)
54-
qlplot(BandedMatrix(A'); title="A', 1st", linewidth=0, nlevels=100, x=range(-2,2; length=200), y=range(-2,2;length=200))
54+
qlplot(BandedMatrix(A'); title="A', 1st", linewidth=0, nlevels=100, x=range(-2,2; length=100), y=range(-2,2;length=100))
5555
symbolplot!(A; linewidth=2.0, linecolor=:blue, legend=false)
56-
qlplot(BandedMatrix(A'); branch=findsecond, title="A'", linewidth=0, nlevels=100, x=range(-2,2; length=200), y=range(-2,2;length=200))
56+
qlplot(BandedMatrix(A'); branch=findsecond, title="A'", linewidth=0, nlevels=100, x=range(-2,2; length=100), y=range(-2,2;length=100))
5757

5858

5959
heatmap!(x,y,fill(-100,length(y),length(x)); legend=false, color=:grays, fillalpha=(z -> isnan(z) ? 0.0 : 1.0).(z))
@@ -144,6 +144,8 @@ function qdL(A)
144144
ql(B3).L
145145
end
146146
# Bull's head
147+
A = BandedMatrix(-3 => Fill(7/10,10), -2 => Fill(1,11), 1 => Fill(2im,9))
148+
147149
A = BandedMatrix(-3 => Fill(7/10,∞), -2 => Fill(1,∞), 1 => Fill(2im,∞))
148150
qlplot(A; title="largest", linewidth=0)
149151

0 commit comments

Comments
 (0)