Skip to content

Commit 24303a0

Browse files
committed
glitches
1 parent 1182356 commit 24303a0

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

docs/src/lecture_12/lecture.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,14 @@ which trivially applies to sum: ``x_1+x_2=N(\mu_1+\mu_2, \sqrt{\sigma_1^2 + \sig
132132

133133

134134
## Vector uncertainty
135-
The approach above competely ignores the covariances between variables
135+
The approach above competely ignores the covariances between variables. While it is possible to do it linearnly in the same fashion, the approach suffer from a loss of precision under non-linearity.
136136

137+
A more sophisticated approach is based on decomposition of the covariance matrix
138+
139+
140+
# Manipulating ODEs
141+
142+
So far, we have considered first-order ODEs. Many ODEs are defined in higher order form, e.g.
137143

138144

139145
- check Chris Raucausacc latest blog

docs/src/lecture_12/ode.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,5 @@ GX=solve(f,[GaussNum(1.0,0.1),GaussNum(1.0,0.1)],[0.1,0.2,0.3,0.2],0.1,1000)
7777
M,V=MV(GX)
7878
plot(M',errorbar=V')
7979
using Measurements
80-
GX=solve(f,[1.0±0.1,1.0±0.1],[0.1,0.2,0.3,0.2],0.1,1000)
80+
MX=solve(f,[1.0±0.1,1.0±0.1],[0.1,0.2,0.3,0.2],0.1,1000)
81+
plot(MX[1,:])

0 commit comments

Comments
 (0)