Finished exercise 1

This commit is contained in:
Michael Chen 2022-10-27 18:21:42 +02:00
parent e7413809a6
commit 5d62b67c66
Signed by: cnml
GPG Key ID: 5845BF3F82D5F629

View File

@ -373,7 +373,7 @@ md"""
"""
# ╔═╡ 4a8f3088-6f98-11eb-1d0e-4b1ba2e676ae
missing
plot(z)
# ╔═╡ 50cc4f32-6f98-11eb-25a4-ebaf581955ea
md"""
@ -382,7 +382,7 @@ md"""
"""
# ╔═╡ 56177258-6f98-11eb-276f-7d8053bdcb86
missing
plot(y,z)
# ╔═╡ 5733a026-6f98-11eb-1b50-c75f87fbabe5
md"""
@ -391,7 +391,7 @@ md"""
"""
# ╔═╡ 5d770eb4-6f98-11eb-3206-8d26f2717981
missing
plot(x,y,z)
# ╔═╡ 6824d1f2-6f98-11eb-12f1-adf1271af917
md"""
@ -402,7 +402,7 @@ Arguments are interpreted flexible. We have already seen that we can plot `x`, w
"""
# ╔═╡ 6debc444-6f98-11eb-3c9e-4dc533fe13ec
missing
plot(x, exp)
# ╔═╡ 77d17b00-6f98-11eb-37ad-dd347db13fb3
md"""
@ -416,7 +416,7 @@ Data can be plotted together as series, as is the default. There are different s
@bind seriestype1 Select(["line" => :line,"path" => :path, "steppre" => :steppre, "steppost" => :steppost, "sticks" => :sticks, "scatter" => :scatter])
# ╔═╡ 8f566768-6f98-11eb-20ae-45d6f39cd210
plot(y,z, seriestype=seriestype1)
plot(y,z, seriestype=seriestype1, color = :green)
# ╔═╡ 961e9cd2-6f98-11eb-362c-517edab85a8c
md"""