lapack-traits 0.4.0

Generic real/complex scalar trait wrappers for BLAS and LAPACK routines
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![cfg(feature = "simba")]

use crate::LapackScalar;

use simba::scalar::ComplexField;

pub trait LComplexField: ComplexField + LapackScalar<Real=Self::RealField>
{

}

impl<T> LComplexField for T where
T: ComplexField + LapackScalar<Real=Self::RealField>{

}