Skip to content

Commit 2923a3f

Browse files
added Laplace approx. Splitted filter and samples into diff files.
1 parent 5cc1268 commit 2923a3f

28 files changed

+7659
-1256
lines changed

Manifest.toml

Lines changed: 470 additions & 150 deletions
Large diffs are not rendered by default.

Project.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,33 @@ authors = ["Mattias Villani"]
44
version = "1.0.0-DEV"
55

66
[deps]
7+
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
78
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
9+
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
810
LaTeXStrings = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f"
11+
LineSearches = "d3d80556-e9d4-5f37-9878-2ab0fcc64255"
912
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
13+
Literate = "98b081ad-f1c9-55d3-8b20-4c87d4299306"
1014
Measures = "442fdcdd-2543-5da2-b0f3-8c86c306513e"
1115
PDMats = "90014a1f-27ba-587c-ab20-58faa44d9150"
1216
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
1317
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
18+
Revise = "295af30f-e4ad-537b-8983-00126c2a3abe"
1419
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1520

1621
[compat]
22+
CSV = "0.10.15"
1723
Distributions = "0.25.113"
24+
ForwardDiff = "1.0.1"
1825
LaTeXStrings = "1.4.0"
26+
LineSearches = "7.4.0"
1927
LinearAlgebra = "1.11.0"
28+
Literate = "2.20.1"
2029
Measures = "0.3.2"
2130
PDMats = "0.11.31"
2231
Plots = "1.40.9"
2332
Random = "1.11.0"
33+
Revise = "3.8.1"
2434
Statistics = "1.11.1"
2535
julia = "1.10"
2636

docs/make.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ makedocs(;
5252
canonical="https://mattiasvillani.github.io/SMCsamplers.jl",
5353
edit_link="main",
5454
assets=String[],
55-
size_threshold = 1000 * 2^10, # 1000 KiB determines the maximal html size in KiB
55+
size_threshold = 2000 * 2^10, # 1000 KiB determines the maximal html size in KiB
5656
),
5757

5858

docs/src/FFBS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
FFBS
33
FFBSx
44
FFBS_unscented
5+
FFBS_laplace
56
```

docs/src/KalmanFilters.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
```@docs
22
SMCsamplers.kalmanfilter_update
33
SMCsamplers.kalmanfilter_update_extended
4+
SMCsamplers.kalmanfilter_update_extended_iter
5+
SMCsamplers.kalmanfilter_update_extended_iter_line
46
SMCsamplers.kalmanfilter_update_unscented
7+
SMCsamplers.laplace_kalmanfilter_update
58
```

docs/src/examples/LGSS.md

Lines changed: 252 additions & 252 deletions
Large diffs are not rendered by default.

docs/src/examples/Poisson.md

Lines changed: 292 additions & 0 deletions
Large diffs are not rendered by default.

docs/src/examples/SAR.md

Lines changed: 311 additions & 0 deletions
Large diffs are not rendered by default.

docs/src/examples/SV.md

Lines changed: 259 additions & 259 deletions
Large diffs are not rendered by default.

docs/src/examples/TvReg.md

Lines changed: 82 additions & 82 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)