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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
use crate::{
check_square,
index::*,
triangular::{IntoTriangular, SolveTriangularInplace, UPLO},
LinalgError, Result,
};
use ndarray::{Array, Array2, ArrayBase, Data, DataMut, Ix2, NdFloat};
pub trait CholeskyInplace {
fn cholesky_inplace_dirty(&mut self) -> Result<&mut Self>;
fn cholesky_into_dirty(mut self) -> Result<Self>
where
Self: Sized,
{
self.cholesky_inplace_dirty()?;
Ok(self)
}
fn cholesky_inplace(&mut self) -> Result<&mut Self>;
fn cholesky_into(mut self) -> Result<Self>
where
Self: Sized,
{
self.cholesky_inplace()?;
Ok(self)
}
}
impl<A, S> CholeskyInplace for ArrayBase<S, Ix2>
where
A: NdFloat,
S: DataMut<Elem = A>,
{
fn cholesky_inplace_dirty(&mut self) -> Result<&mut Self> {
let n = check_square(self)?;
for j in 0..n {
let mut d = A::zero();
unsafe {
for k in 0..j {
let mut s = A::zero();
for i in 0..k {
s += *self.at((k, i)) * *self.at((j, i));
}
s = (*self.at((j, k)) - s) / *self.at((k, k));
*self.atm((j, k)) = s;
d += s * s;
}
d = *self.at((j, j)) - d;
}
if d <= A::zero() {
return Err(LinalgError::NotPositiveDefinite);
}
unsafe { *self.atm((j, j)) = d.sqrt() };
}
Ok(self)
}
fn cholesky_inplace(&mut self) -> Result<&mut Self> {
self.cholesky_inplace_dirty()?;
self.triangular_inplace(UPLO::Lower)?;
Ok(self)
}
}
pub trait Cholesky {
type Output;
fn cholesky_dirty(&self) -> Result<Self::Output>;
fn cholesky(&self) -> Result<Self::Output>;
}
impl<A, S> Cholesky for ArrayBase<S, Ix2>
where
A: NdFloat,
S: Data<Elem = A>,
{
type Output = Array2<A>;
fn cholesky_dirty(&self) -> Result<Self::Output> {
let arr = self.to_owned();
arr.cholesky_into_dirty()
}
fn cholesky(&self) -> Result<Self::Output> {
let arr = self.to_owned();
arr.cholesky_into()
}
}
pub trait SolveCInplace<B> {
fn solvec_inplace<'a>(&mut self, b: &'a mut B) -> Result<&'a mut B>;
fn solvec_into(&mut self, mut b: B) -> Result<B> {
self.solvec_inplace(&mut b)?;
Ok(b)
}
}
impl<A: NdFloat, Si: DataMut<Elem = A>, So: DataMut<Elem = A>> SolveCInplace<ArrayBase<So, Ix2>>
for ArrayBase<Si, Ix2>
{
fn solvec_inplace<'a>(
&mut self,
b: &'a mut ArrayBase<So, Ix2>,
) -> Result<&'a mut ArrayBase<So, Ix2>> {
let chol = self.cholesky_inplace_dirty()?;
chol.solve_triangular_inplace(b, UPLO::Lower)?;
chol.t().solve_triangular_inplace(b, UPLO::Upper)?;
Ok(b)
}
}
pub trait SolveC<B> {
type Output;
fn solvec(&mut self, b: &B) -> Result<Self::Output>;
}
impl<A: NdFloat, Si: DataMut<Elem = A>, So: Data<Elem = A>> SolveC<ArrayBase<So, Ix2>>
for ArrayBase<Si, Ix2>
{
type Output = Array<A, Ix2>;
fn solvec(&mut self, b: &ArrayBase<So, Ix2>) -> Result<Self::Output> {
self.solvec_into(b.to_owned())
}
}
pub trait InverseCInplace {
type Output;
fn invc_inplace(&mut self) -> Result<Self::Output>;
}
impl<A: NdFloat, S: DataMut<Elem = A>> InverseCInplace for ArrayBase<S, Ix2> {
type Output = Array2<A>;
fn invc_inplace(&mut self) -> Result<Self::Output> {
let eye = Array2::eye(self.nrows());
let res = self.solvec_into(eye)?;
Ok(res)
}
}
pub trait InverseC {
type Output;
fn invc(&self) -> Result<Self::Output>;
}
impl<A: NdFloat, S: Data<Elem = A>> InverseC for ArrayBase<S, Ix2> {
type Output = Array2<A>;
fn invc(&self) -> Result<Self::Output> {
self.to_owned().invc_inplace()
}
}
#[cfg(test)]
mod test {
use approx::assert_abs_diff_eq;
use ndarray::array;
use super::*;
#[test]
fn decompose() {
let arr = array![[25., 15., -5.], [15., 18., 0.], [-5., 0., 11.]];
let lower = array![[5.0, 0.0, 0.0], [3.0, 3.0, 0.0], [-1., 1., 3.]];
let chol = arr.cholesky().unwrap();
assert_abs_diff_eq!(chol, lower, epsilon = 1e-7);
assert_abs_diff_eq!(chol.dot(&chol.t()), arr, epsilon = 1e-7);
}
#[test]
fn bad_matrix() {
let mut row = array![[1., 2., 3.], [3., 4., 5.]];
assert!(matches!(
row.cholesky(),
Err(LinalgError::NotSquare { rows: 2, cols: 3 })
));
assert!(matches!(
row.solvec(&Array2::zeros((2, 3))),
Err(LinalgError::NotSquare { rows: 2, cols: 3 })
));
let mut non_pd = array![[1., 2.], [2., 1.]];
assert!(matches!(
non_pd.cholesky(),
Err(LinalgError::NotPositiveDefinite)
));
assert!(matches!(
non_pd.solvec(&Array2::zeros((2, 3))),
Err(LinalgError::NotPositiveDefinite)
));
let zeros = array![[0., 0.], [0., 0.]];
assert!(matches!(
zeros.cholesky(),
Err(LinalgError::NotPositiveDefinite)
));
}
#[test]
fn solvec() {
let mut arr = array![[25., 15., -5.], [15., 18., 0.], [-5., 0., 11.]];
let x = array![
[10., -3., 2.2, 4.],
[0., 2.4, -0.9, 1.1],
[5.5, 7.6, 8.1, 10.]
];
let b = arr.dot(&x);
let out = arr.solvec(&b).unwrap();
assert_abs_diff_eq!(out, x, epsilon = 1e-7);
}
#[test]
fn invc() {
let arr = array![[25., 15., -5.], [15., 18., 0.], [-5., 0., 11.]];
let inv = arr.invc().unwrap();
assert_abs_diff_eq!(arr.dot(&inv), Array2::eye(3));
}
#[test]
fn corner_cases() {
let empty = Array2::<f64>::zeros((0, 0));
assert_eq!(empty.cholesky().unwrap(), empty);
assert_eq!(empty.clone().invc().unwrap(), empty);
let one = array![[1.]];
assert_eq!(one.cholesky().unwrap(), one);
assert_eq!(one.clone().invc().unwrap(), one);
}
}