conspire::math

Type Alias TensorRank0

Source
pub type TensorRank0 = f64;
Expand description

A tensor of rank 0 (a scalar).

Trait Implementations§

Source§

impl Hessian for TensorRank0

Source§

fn is_positive_definite(&self) -> bool

Checks whether the Hessian is positive-definite.
Source§

impl Tensor for TensorRank0

Source§

type Item = f64

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

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

Returns the full contraction with another tensor.
Source§

fn is_zero(&self) -> bool

Checks whether the tensor is the zero 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 normalized(self) -> Self

Returns the tensor normalized.
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 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§

impl TensorArray for TensorRank0

Source§

type Array = [f64; 1]

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.