added panic so that the code compiles
This commit is contained in:
parent
d61f9e29ba
commit
b732b75a77
|
@ -171,6 +171,7 @@ where
|
|||
/// Returns a tuple of vectors. The elements of the tuple are the complex eigenvalues, complex left eigenvectors and complex right eigenvectors respectively.
|
||||
/// The elements appear as conjugate pairs within each vector, with the positive of the pair always being first.
|
||||
pub fn get_complex_elements(&self) -> (Option<Vec<Complex<T>>>, Option<Vec<OVector<Complex<T>, D>>>, Option<Vec<OVector<Complex<T>, D>>>) where DefaultAllocator: Allocator<Complex<T>, D> {
|
||||
panic!("TODO");
|
||||
match !self.eigenvalues_are_real() {
|
||||
true => (None, None, None),
|
||||
false => {
|
||||
|
|
Loading…
Reference in New Issue