Enum gmt_lom::OpticalSensitivity

source ·
pub enum OpticalSensitivity<const N: usize = 84> {
    Wavefront(Vec<f64>),
    TipTilt(Vec<f64>),
    SegmentTipTilt(Vec<f64>),
    SegmentPiston(Vec<f64>),
    SegmentMask(Vec<i32>),
    PupilMask(Vec<bool>),
}
Expand description

Optical sensitivity

Linear transformation of M1 and M2 rigid body motions into wavefront and wavefront piston and tip-tilt modes

Variants§

§

Wavefront(Vec<f64>)

Wavefront sensitivity [nxN] where n in the pupil resolution

§

TipTilt(Vec<f64>)

Exit pupil tip-tilt sensitivity [2xN]

§

SegmentTipTilt(Vec<f64>)

Exit pupil segment tip-tilt [14xN]

§

SegmentPiston(Vec<f64>)

Exit pupil segment piston [7xN]

§

SegmentMask(Vec<i32>)

§

PupilMask(Vec<bool>)

Implementations§

source§

impl<const N: usize> OpticalSensitivity<N>

source

pub fn m1_wavefront(&self) -> Result<DMatrix<f64>, LinearOpticalModelError>

Returns M1 wavefront sensitivities [nx42]

source

pub fn m2_rxy(&self) -> Result<DMatrix<f64>, LinearOpticalModelError>

Returns M2 segment tip-tilt sensitivities [14x14]

source

pub fn into_optics(&self, rbm: &DMatrix<f64>) -> Vec<f64>

Trait Implementations§

source§

impl<const N: usize> Clone for OpticalSensitivity<N>

source§

fn clone(&self) -> OpticalSensitivity<N>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<const N: usize> Debug for OpticalSensitivity<N>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de, const N: usize> Deserialize<'de> for OpticalSensitivity<N>

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<const N: usize> Display for OpticalSensitivity<N>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a, const N: usize> From<&'a OpticalSensitivity<N>> for DMatrix<f64>

source§

fn from(sens: &'a OpticalSensitivity<N>) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a OpticalSensitivity> for &'a [f64]

source§

fn from(sens: &'a OpticalSensitivity) -> Self

Converts to this type from the input type.
source§

impl<const N: usize> Index<OpticalSensitivity<N>> for OpticalSensitivities<N>

§

type Output = OpticalSensitivity<N>

The returned type after indexing.
source§

fn index(&self, index: OpticalSensitivity<N>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl<const N: usize> PartialEq for OpticalSensitivity<N>

source§

fn eq(&self, other: &OpticalSensitivity<N>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<const N: usize> Serialize for OpticalSensitivity<N>

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl<const N: usize> Freeze for OpticalSensitivity<N>

§

impl<const N: usize> RefUnwindSafe for OpticalSensitivity<N>

§

impl<const N: usize> Send for OpticalSensitivity<N>

§

impl<const N: usize> Sync for OpticalSensitivity<N>

§

impl<const N: usize> Unpin for OpticalSensitivity<N>

§

impl<const N: usize> UnwindSafe for OpticalSensitivity<N>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

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

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,

source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

source§

impl<T> Scalar for T
where T: 'static + Clone + PartialEq + Debug,