Skip to content
This repository has been archived by the owner on Nov 8, 2024. It is now read-only.

Commit

Permalink
added ; to all record calls
Browse files Browse the repository at this point in the history
  • Loading branch information
storopoli committed Dec 26, 2022
1 parent 670d2c7 commit ffa581d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions _literate/05_MCMC.jl
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ record(f, joinpath(@OUTPUT, "met_anim.gif"); framerate=5) do frame
linesegments!(X_met[i:(i + 1), 1], X_met[i:(i + 1), 2]; color=(:green, 0.5))
recordframe!(frame)
end
end
end;

# \fig{met_anim}
# \center{*Animation of the First 100 Samples Generated from the Metropolis Algorithm*} \\
Expand Down Expand Up @@ -697,7 +697,7 @@ record(f, joinpath(@OUTPUT, "gibbs_anim.gif"); framerate=5) do frame
linesegments!(X_gibbs[i:(i + 1), 1], X_gibbs[i:(i + 1), 2]; color=(:green, 0.5))
recordframe!(frame)
end
end
end;

# \fig{gibbs_anim}
# \center{*Animation of the First 100 Samples Generated from the Gibbs Algorithm*} \\
Expand Down Expand Up @@ -806,7 +806,7 @@ record(f, joinpath(@OUTPUT, "parallel_met.gif"); framerate=5) do frame
)
recordframe!(frame)
end
end
end;

# \fig{parallel_met}
# \center{*Animation of 4 Parallel Metropolis Markov Chains*} \\
Expand Down Expand Up @@ -856,7 +856,7 @@ record(f, joinpath(@OUTPUT, "parallel_gibbs.gif"); framerate=5) do frame
)
recordframe!(frame)
end
end
end;

# \fig{parallel_gibbs}
# \center{*Animation of 4 Parallel Gibbs Markov Chains*} \\
Expand Down Expand Up @@ -1075,7 +1075,7 @@ record(f, joinpath(@OUTPUT, "hmc_anim.gif"); framerate=5) do frame
linesegments!(X_hmc[i:(i + 1), 1], X_hmc[i:(i + 1), 2]; color=(:green, 0.5))
recordframe!(frame)
end
end
end;

# \fig{hmc_anim}
# \center{*Animation of the First 100 Samples Generated from the HMC Algorithm*} \\
Expand Down

0 comments on commit ffa581d

Please sign in to comment.