pub struct ComplexMatrix(pub [[Complex64; 2]; 2]);Expand description
Represents a 2x2 matrix of complex numbers.
Tuple Fields§
§0: [[Complex64; 2]; 2]Implementations§
Source§impl ComplexMatrix
impl ComplexMatrix
Sourcepub fn invert(&self) -> Option<ComplexMatrix>
pub fn invert(&self) -> Option<ComplexMatrix>
Computes the inverse of the matrix if it exists.
Returns None if the matrix is not invertible (determinant is zero).
Trait Implementations§
Source§impl Add for ComplexMatrix
Implements matrix addition for ComplexMatrix.
impl Add for ComplexMatrix
Implements matrix addition for ComplexMatrix.
Source§impl Clone for ComplexMatrix
impl Clone for ComplexMatrix
Source§fn clone(&self) -> ComplexMatrix
fn clone(&self) -> ComplexMatrix
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Div<f64> for ComplexMatrix
Implements scalar division for ComplexMatrix.
impl Div<f64> for ComplexMatrix
Implements scalar division for ComplexMatrix.
Source§impl Into<ComplexMatrix> for [[Complex64; 2]; 2]
Allows conversion from a 2x2 array of Complex64 to ComplexMatrix.
impl Into<ComplexMatrix> for [[Complex64; 2]; 2]
Allows conversion from a 2x2 array of Complex64 to ComplexMatrix.
Source§fn into(self) -> ComplexMatrix
fn into(self) -> ComplexMatrix
Converts this type into the (usually inferred) input type.
impl Copy for ComplexMatrix
Auto Trait Implementations§
impl Freeze for ComplexMatrix
impl RefUnwindSafe for ComplexMatrix
impl Send for ComplexMatrix
impl Sync for ComplexMatrix
impl Unpin for ComplexMatrix
impl UnsafeUnpin for ComplexMatrix
impl UnwindSafe for ComplexMatrix
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.