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
use crate::{matrix::Matrix, number::c64};
impl Matrix<f64> {
pub fn diinv(self) -> Self {
self.dipowi(-1)
}
}
impl Matrix<c64> {
pub fn diinv(self) -> Self {
self.dipowi(-1)
}
}
#[cfg(test)]
mod tests {
use crate::prelude::*;
#[test]
fn it_works() {
let a = Matrix::<f64>::identity(2);
let a_inv = a.clone().diinv();
assert_eq!(a[0][0], a_inv[0][0]);
let a = Matrix::<c64>::identity(2);
let a_inv = a.clone().diinv();
assert_eq!(a[0][0], a_inv[0][0]);
}
}