forked from alexfertel/rust-algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gaussian_elimination.rs
79 lines (70 loc) · 2.32 KB
/
gaussian_elimination.rs
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
// Gaussian Elimination of Quadratic Matrices
// Takes an augmented matrix as input, returns vector of results
// Wikipedia reference: augmented matrix: https://en.wikipedia.org/wiki/Augmented_matrix
// Wikipedia reference: algorithm: https://en.wikipedia.org/wiki/Gaussian_elimination
pub fn gaussian_elimination(matrix: &mut [Vec<f32>]) -> Vec<f32> {
let size = matrix.len();
assert_eq!(size, matrix[0].len() - 1);
for i in 0..size - 1 {
for j in i..size - 1 {
echelon(matrix, i, j);
}
}
for i in (1..size).rev() {
eliminate(matrix, i);
}
// Disable cargo clippy warnings about needless range loops.
// Checking the diagonal like this is simpler than any alternative.
#[allow(clippy::needless_range_loop)]
for i in 0..size {
if matrix[i][i] == 0f32 {
println!("Infinitely many solutions");
}
}
let mut result: Vec<f32> = vec![0f32; size];
for i in 0..size {
result[i] = matrix[i][size] / matrix[i][i];
}
result
}
fn echelon(matrix: &mut [Vec<f32>], i: usize, j: usize) {
let size = matrix.len();
if matrix[i][i] == 0f32 {
} else {
let factor = matrix[j + 1][i] / matrix[i][i];
(i..size + 1).for_each(|k| {
matrix[j + 1][k] -= factor * matrix[i][k];
});
}
}
fn eliminate(matrix: &mut [Vec<f32>], i: usize) {
let size = matrix.len();
if matrix[i][i] == 0f32 {
} else {
for j in (1..i + 1).rev() {
let factor = matrix[j - 1][i] / matrix[i][i];
for k in (0..size + 1).rev() {
matrix[j - 1][k] -= factor * matrix[i][k];
}
}
}
}
#[cfg(test)]
mod tests {
use super::gaussian_elimination;
#[test]
fn test_gauss() {
let mut matrix: Vec<Vec<f32>> = vec![
vec![1.5, 2.0, 1.0, -1.0, -2.0, 1.0, 1.0],
vec![3.0, 3.0, -1.0, 16.0, 18.0, 1.0, 1.0],
vec![1.0, 1.0, 3.0, -2.0, -6.0, 1.0, 1.0],
vec![1.0, 1.0, 99.0, 19.0, 2.0, 1.0, 1.0],
vec![1.0, -2.0, 16.0, 1.0, 9.0, 10.0, 1.0],
vec![1.0, 3.0, 1.0, -5.0, 1.0, 1.0, 95.0],
];
let result = vec![
-264.05893, 159.63196, -6.156921, 35.310387, -18.806696, 81.67839,
];
assert_eq!(gaussian_elimination(&mut matrix), result);
}
}