1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
use ndarray::*;
use ndarray_linalg::*;
use num_traits::{Float, FromPrimitive, One};
use crate::traits::*;
pub struct Jacobian<'jac, A, D, TEO>
where
A: Scalar + Lapack,
D: Dimension,
TEO: 'jac + TimeEvolution<Scalar = A, Dim = D>,
{
f: &'jac mut TEO,
x: Array<A, D>,
fx: Array<A, D>,
alpha: A::Real,
}
pub trait LinearApprox<A, D, TEO>
where
A: Scalar + Lapack,
D: Dimension,
TEO: TimeEvolution<Scalar = A, Dim = D>,
{
fn lin_approx<'jac>(
&'jac mut self,
x: Array<A, D>,
alpha: A::Real,
) -> Jacobian<'jac, A, D, TEO>
where
TEO: 'jac;
}
impl<A, D, TEO> LinearApprox<A, D, TEO> for TEO
where
A: Scalar + Lapack,
D: Dimension,
TEO: TimeEvolution<Scalar = A, Dim = D>,
{
fn lin_approx<'jac>(&'jac mut self, x: Array<A, D>, alpha: A::Real) -> Jacobian<'jac, A, D, TEO>
where
TEO: 'jac,
{
Jacobian::new(self, x, alpha)
}
}
impl<'jac, A, D, TEO> Jacobian<'jac, A, D, TEO>
where
A: Scalar + Lapack,
D: Dimension,
TEO: TimeEvolution<Scalar = A, Dim = D>,
{
pub fn new(f: &'jac mut TEO, x: Array<A, D>, alpha: A::Real) -> Jacobian<'jac, A, D, TEO>
where
TEO: 'jac,
{
let mut fx = x.clone();
f.iterate(&mut fx);
Jacobian { f, x, fx, alpha }
}
pub fn apply(&mut self, mut dx: Array<A, D>) -> Array<A, D> {
self.apply_inplace(&mut dx);
dx
}
pub fn apply_inplace<'a, S>(&mut self, dx: &'a mut ArrayBase<S, D>) -> &'a mut ArrayBase<S, D>
where
S: DataMut<Elem = A>,
{
let dx_nrm = dx.norm_l2().max(self.alpha);
let n = self.alpha / dx_nrm;
Zip::from(&mut *dx).and(&self.x).for_each(|dx, &x| {
*dx = x + dx.mul_real(n);
});
let x_dx = self.f.iterate(dx);
Zip::from(&mut *x_dx).and(&self.fx).for_each(|x_dx, &fx| {
*x_dx = (*x_dx - fx).div_real(n);
});
x_dx
}
pub fn apply_multi(&mut self, mut a: Array<A, D::Larger>) -> Array<A, D::Larger>
where
D::Larger: RemoveAxis + Dimension<Smaller = D>,
{
self.apply_multi_inplace(&mut a);
a
}
pub fn apply_multi_inplace<'a, S>(
&mut self,
a: &'a mut ArrayBase<S, D::Larger>,
) -> &'a mut ArrayBase<S, D::Larger>
where
S: DataMut<Elem = A>,
D::Larger: RemoveAxis + Dimension<Smaller = D>,
{
let n = a.ndim();
for mut col in a.axis_iter_mut(Axis(n - 1)) {
self.apply_inplace(&mut col);
}
a
}
}
pub fn exponents<A, TEO>(teo: TEO, x: Array1<A>, alpha: A::Real, duration: usize) -> Array1<A::Real>
where
A: Scalar + Lapack,
TEO: TimeEvolution<Scalar = A, Dim = Ix1> + TimeStep<Time = A::Real>,
{
let n = teo.model_size();
let dur = teo.get_dt() * TEO::Time::from_usize(duration).unwrap();
Series::new(teo, x, alpha)
.map(|(_x, _q, r)| r.diag().map(|x| Scalar::ln(x.abs())))
.skip(duration / 10)
.take(duration)
.fold(ArrayBase::zeros(n), |mut x, y| {
azip!((x in &mut x, &y in &y) *x += y/dur );
x
})
}
pub struct Series<A, TEO>
where
A: Scalar + Lapack,
TEO: TimeEvolution<Scalar = A, Dim = Ix1>,
{
teo: TEO,
x: Array1<A>,
q: Array2<A>,
alpha: A::Real,
}
impl<A, TEO> Series<A, TEO>
where
A: Scalar + Lapack,
TEO: TimeEvolution<Scalar = A, Dim = Ix1>,
{
pub fn new(teo: TEO, x: Array1<A>, alpha: A::Real) -> Self {
let q = Array::eye(teo.model_size());
Series { teo, x, q, alpha }
}
}
impl<A, TEO> Iterator for Series<A, TEO>
where
A: Scalar + Lapack,
TEO: TimeEvolution<Scalar = A, Dim = Ix1>,
{
type Item = (Array1<A>, Array2<A>, Array2<A>);
fn next(&mut self) -> Option<Self::Item> {
let q = self
.teo
.lin_approx(self.x.to_owned(), self.alpha)
.apply_multi_inplace(&mut self.q);
let (q, r) = q.qr_square_inplace().unwrap();
self.teo.iterate(&mut self.x);
Some((self.x.to_owned(), q.to_owned(), r))
}
}
fn clv_backward<A: Scalar + Lapack>(c: &Array2<A>, r: &Array2<A>) -> (Array2<A>, Array1<A::Real>) {
let cd = r
.solve_triangular(UPLO::Upper, ::ndarray_linalg::Diag::NonUnit, c)
.expect("Failed to solve R");
let (c, d) = normalize(cd, NormalizeAxis::Column);
let f = Array::from(d).mapv_into(|x| A::Real::one() / x);
(c, f)
}
pub fn vectors<A, TEO>(
teo: TEO,
x: Array1<A>,
alpha: A::Real,
duration: usize,
) -> Vec<(Array1<A>, Array2<A>, Array1<A::Real>)>
where
A: Scalar + Lapack,
TEO: TimeEvolution<Scalar = A, Dim = Ix1> + Clone,
{
let n = teo.model_size();
let qr_series = Series::new(teo, x, alpha)
.skip(duration / 10)
.take(duration + duration / 10)
.collect::<Vec<_>>();
let clv_rev = qr_series
.into_iter()
.rev()
.scan(Array::eye(n), |c, (x, q, r)| {
let (c_now, f) = clv_backward(c, &r);
let v = q.dot(&c_now);
*c = c_now;
Some((x, v, f))
})
.collect::<Vec<_>>();
clv_rev.into_iter().skip(duration / 10).rev().collect()
}