conspire::math

Struct TensorRank1

Source
pub struct TensorRank1<const D: usize, const I: usize>(/* private fields */);
Expand description

A d-dimensional tensor of rank 1.

D is the dimension, I is the configuration.

Implementations§

Source§

impl<const D: usize, const I: usize> TensorRank1<D, I>

Source

pub fn cross(&self, tensor_rank_1: &Self) -> Self

Returns the cross product with another rank-1 tensor.

Trait Implementations§

Source§

impl<const D: usize, const I: usize> Add<&TensorRank1<D, I>> for TensorRank1<D, I>

Source§

type Output = TensorRank1<D, I>

The resulting type after applying the + operator.
Source§

fn add(self, tensor_rank_1: &Self) -> Self::Output

Performs the + operation. Read more
Source§

impl<const D: usize, const I: usize> Add<TensorRank1<D, I>> for &TensorRank1<D, I>

Source§

type Output = TensorRank1<D, I>

The resulting type after applying the + operator.
Source§

fn add(self, tensor_rank_1: TensorRank1<D, I>) -> Self::Output

Performs the + operation. Read more
Source§

impl<const D: usize, const I: usize> Add for TensorRank1<D, I>

Source§

type Output = TensorRank1<D, I>

The resulting type after applying the + operator.
Source§

fn add(self, tensor_rank_1: Self) -> Self::Output

Performs the + operation. Read more
Source§

impl<const D: usize, const I: usize> AddAssign<&TensorRank1<D, I>> for TensorRank1<D, I>

Source§

fn add_assign(&mut self, tensor_rank_1: &Self)

Performs the += operation. Read more
Source§

impl<const D: usize, const I: usize> AddAssign for TensorRank1<D, I>

Source§

fn add_assign(&mut self, tensor_rank_1: Self)

Performs the += operation. Read more
Source§

impl<const D: usize, const I: usize> Clone for TensorRank1<D, I>

Source§

fn clone(&self) -> TensorRank1<D, I>

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 D: usize, const I: usize, const J: usize, const K: usize, const L: usize> ContractSecondFourthIndicesWithFirstIndicesOf<&TensorRank1<D, J>, &TensorRank1<D, L>> for TensorRank4<D, I, J, K, L>

Source§

type Output = TensorRank2<D, I, K>

Source§

fn contract_second_fourth_indices_with_first_indices_of( &self, tensor_rank_1_a: &TensorRank1<D, J>, tensor_rank_1_b: &TensorRank1<D, L>, ) -> Self::Output

Source§

impl<const D: usize, const I: usize, const J: usize> Convert<TensorRank1<D, J>> for TensorRank1<D, I>

Source§

fn convert(&self) -> TensorRank1<D, J>

Converts this type into the (usually inferred) input type.
Source§

impl<const D: usize, const I: usize> Debug for TensorRank1<D, I>

Source§

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

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

impl<const D: usize, const I: usize> Display for TensorRank1<D, I>

Source§

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

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

impl<const D: usize, const I: usize> Div<&f64> for &TensorRank1<D, I>

Source§

type Output = TensorRank1<D, I>

The resulting type after applying the / operator.
Source§

fn div(self, tensor_rank_0: &TensorRank0) -> Self::Output

Performs the / operation. Read more
Source§

impl<const D: usize, const I: usize> Div<&f64> for TensorRank1<D, I>

Source§

type Output = TensorRank1<D, I>

The resulting type after applying the / operator.
Source§

fn div(self, tensor_rank_0: &TensorRank0) -> Self::Output

Performs the / operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> Div<TensorRank2<D, I, J>> for TensorRank1<D, I>

Source§

type Output = TensorRank1<D, J>

The resulting type after applying the / operator.
Source§

fn div(self, tensor_rank_2: TensorRank2<D, I, J>) -> Self::Output

Performs the / operation. Read more
Source§

impl<const D: usize, const I: usize> Div<f64> for &TensorRank1<D, I>

Source§

type Output = TensorRank1<D, I>

The resulting type after applying the / operator.
Source§

fn div(self, tensor_rank_0: TensorRank0) -> Self::Output

Performs the / operation. Read more
Source§

impl<const D: usize, const I: usize> Div<f64> for TensorRank1<D, I>

Source§

type Output = TensorRank1<D, I>

The resulting type after applying the / operator.
Source§

fn div(self, tensor_rank_0: TensorRank0) -> Self::Output

Performs the / operation. Read more
Source§

impl<const D: usize, const I: usize> DivAssign<&f64> for TensorRank1<D, I>

Source§

fn div_assign(&mut self, tensor_rank_0: &TensorRank0)

Performs the /= operation. Read more
Source§

impl<const D: usize, const I: usize> DivAssign<f64> for TensorRank1<D, I>

Source§

fn div_assign(&mut self, tensor_rank_0: TensorRank0)

Performs the /= operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> From<&TensorRank1<D, I>> for TensorRank1<D, J>

Source§

fn from(tensor_rank_1: &TensorRank1<D, I>) -> Self

Converts to this type from the input type.
Source§

impl<const D: usize, const I: usize, const W: usize> FromIterator<TensorRank1<D, I>> for TensorRank1List<D, I, W>

Source§

fn from_iter<Ii: IntoIterator<Item = TensorRank1<D, I>>>( into_iterator: Ii, ) -> Self

Creates a value from an iterator. Read more
Source§

impl<const D: usize, const I: usize> FromIterator<TensorRank1<D, I>> for TensorRank1Vec<D, I>

Source§

fn from_iter<Ii: IntoIterator<Item = TensorRank1<D, I>>>( into_iterator: Ii, ) -> Self

Creates a value from an iterator. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> FromIterator<TensorRank1<D, J>> for TensorRank2<D, I, J>

Source§

fn from_iter<Ii: IntoIterator<Item = TensorRank1<D, J>>>( into_iterator: Ii, ) -> Self

Creates a value from an iterator. Read more
Source§

impl<const D: usize, const I: usize> FromIterator<f64> for TensorRank1<D, I>

Source§

fn from_iter<Ii: IntoIterator<Item = TensorRank0>>(into_iterator: Ii) -> Self

Creates a value from an iterator. Read more
Source§

impl<const D: usize, const I: usize> Index<usize> for TensorRank1<D, I>

Source§

type Output = f64

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &Self::Output

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

impl<const D: usize, const I: usize> IndexMut<usize> for TensorRank1<D, I>

Source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

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

impl<const D: usize, const I: usize> Mul<&TensorRank1<D, I>> for TensorRank1<D, I>

Source§

type Output = f64

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_1: &Self) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> Mul<&TensorRank1<D, J>> for &TensorRank2<D, I, J>

Source§

type Output = TensorRank1<D, I>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_1: &TensorRank1<D, J>) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> Mul<&TensorRank1<D, J>> for TensorRank2<D, I, J>

Source§

type Output = TensorRank1<D, I>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_1: &TensorRank1<D, J>) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize> Mul<&f64> for &TensorRank1<D, I>

Source§

type Output = TensorRank1<D, I>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_0: &TensorRank0) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize> Mul<&f64> for TensorRank1<D, I>

Source§

type Output = TensorRank1<D, I>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_0: &TensorRank0) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize> Mul<TensorRank1<D, I>> for &TensorRank1<D, I>

Source§

type Output = f64

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_1: TensorRank1<D, I>) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> Mul<TensorRank1<D, J>> for &TensorRank2<D, I, J>

Source§

type Output = TensorRank1<D, I>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_1: TensorRank1<D, J>) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize, const J: usize> Mul<TensorRank1<D, J>> for TensorRank2<D, I, J>

Source§

type Output = TensorRank1<D, I>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_1: TensorRank1<D, J>) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize> Mul<f64> for &TensorRank1<D, I>

Source§

type Output = TensorRank1<D, I>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_0: TensorRank0) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize> Mul<f64> for TensorRank1<D, I>

Source§

type Output = TensorRank1<D, I>

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_0: TensorRank0) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize> Mul for &TensorRank1<D, I>

Source§

type Output = f64

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_1: Self) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize> Mul for TensorRank1<D, I>

Source§

type Output = f64

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_1: Self) -> Self::Output

Performs the * operation. Read more
Source§

impl<const D: usize, const I: usize> MulAssign<&f64> for TensorRank1<D, I>

Source§

fn mul_assign(&mut self, tensor_rank_0: &TensorRank0)

Performs the *= operation. Read more
Source§

impl<const D: usize, const I: usize> MulAssign<f64> for TensorRank1<D, I>

Source§

fn mul_assign(&mut self, tensor_rank_0: TensorRank0)

Performs the *= operation. Read more
Source§

impl<const D: usize, const I: usize> PartialEq for TensorRank1<D, I>

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<const D: usize, const I: usize> Sub<&TensorRank1<D, I>> for TensorRank1<D, I>

Source§

type Output = TensorRank1<D, I>

The resulting type after applying the - operator.
Source§

fn sub(self, tensor_rank_1: &Self) -> Self::Output

Performs the - operation. Read more
Source§

impl<const D: usize, const I: usize> Sub<TensorRank1<D, I>> for &TensorRank1<D, I>

Source§

type Output = TensorRank1<D, I>

The resulting type after applying the - operator.
Source§

fn sub(self, tensor_rank_1: TensorRank1<D, I>) -> Self::Output

Performs the - operation. Read more
Source§

impl<const D: usize, const I: usize> Sub for &TensorRank1<D, I>

Source§

type Output = TensorRank1<D, I>

The resulting type after applying the - operator.
Source§

fn sub(self, tensor_rank_1: Self) -> Self::Output

Performs the - operation. Read more
Source§

impl<const D: usize, const I: usize> Sub for TensorRank1<D, I>

Source§

type Output = TensorRank1<D, I>

The resulting type after applying the - operator.
Source§

fn sub(self, tensor_rank_1: Self) -> Self::Output

Performs the - operation. Read more
Source§

impl<const D: usize, const I: usize> SubAssign<&TensorRank1<D, I>> for TensorRank1<D, I>

Source§

fn sub_assign(&mut self, tensor_rank_1: &Self)

Performs the -= operation. Read more
Source§

impl<const D: usize, const I: usize> SubAssign for TensorRank1<D, I>

Source§

fn sub_assign(&mut self, tensor_rank_1: Self)

Performs the -= operation. Read more
Source§

impl<const D: usize, const I: usize> Sum for TensorRank1<D, I>

Source§

fn sum<Ii>(iter: Ii) -> Self
where Ii: Iterator<Item = Self>,

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl<const D: usize, const I: usize> Tensor for TensorRank1<D, I>

Source§

type Item = f64

The type of item encountered when iterating over the tensor.
Source§

fn full_contraction(&self, tensor_rank_1: &Self) -> TensorRank0

Returns the full contraction with another tensor.
Source§

fn iter(&self) -> impl Iterator<Item = &Self::Item>

Returns an iterator. Read more
Source§

fn iter_mut(&mut self) -> impl Iterator<Item = &mut Self::Item>

Returns an iterator that allows modifying each value. Read more
Source§

fn get_at(&self, _indices: &[usize]) -> &TensorRank0

Returns a reference to the entry at the specified indices.
Source§

fn get_at_mut(&mut self, _indices: &[usize]) -> &mut TensorRank0

Returns a mutable reference to the entry at the specified indices.
Source§

fn is_zero(&self) -> bool

Checks whether the tensor is the zero tensor.
Source§

fn norm(&self) -> TensorRank0

Returns the tensor norm.
Source§

fn norm_squared(&self) -> TensorRank0

Returns the tensor norm squared.
Source§

fn normalize(&mut self)

Normalizes the tensor.
Source§

fn normalized(self) -> Self

Returns the tensor normalized.
Source§

impl<const D: usize, const I: usize> TensorArray for TensorRank1<D, I>

Source§

type Array = [f64; D]

The type of array corresponding to the tensor.
Source§

type Item = f64

The type of item encountered when iterating over the tensor.
Source§

fn as_array(&self) -> Self::Array

Returns the tensor as an array.
Source§

fn identity() -> Self

Returns the identity tensor.
Source§

fn new(array: Self::Array) -> Self

Returns a tensor given an array.
Source§

fn zero() -> Self

Returns the zero tensor.

Auto Trait Implementations§

§

impl<const D: usize, const I: usize> Freeze for TensorRank1<D, I>

§

impl<const D: usize, const I: usize> RefUnwindSafe for TensorRank1<D, I>

§

impl<const D: usize, const I: usize> Send for TensorRank1<D, I>

§

impl<const D: usize, const I: usize> Sync for TensorRank1<D, I>

§

impl<const D: usize, const I: usize> Unpin for TensorRank1<D, I>

§

impl<const D: usize, const I: usize> UnwindSafe for TensorRank1<D, I>

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> ToOwned for T
where T: Clone,

Source§

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§

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>,

Source§

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>,

Source§

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<A, Y, U> OdeSolver<Y, U> for A
where A: Debug, Y: Tensor, U: TensorVec<Item = Y>,