pub trait Cos {
type Output;
// Required method
fn cos(self) -> Self::Output;
}
Expand description
Required Associated Types§
Required Methods§
Implementations on Foreign Types§
Implementors§
Source§impl<'a, T, S> Cos for &RecordMatrix<'a, T, S>
Operation for a referenced record matrix of some type.
impl<'a, T, S> Cos for &RecordMatrix<'a, T, S>
Operation for a referenced record matrix of some type.
type Output = RecordContainer<'a, T, MatrixView<(T, usize), Matrix<(T, usize)>>, 2>
Source§impl<'a, T, S> Cos for RecordMatrix<'a, T, S>
Operation for a record matrix of some type.
impl<'a, T, S> Cos for RecordMatrix<'a, T, S>
Operation for a record matrix of some type.
type Output = RecordContainer<'a, T, MatrixView<(T, usize), Matrix<(T, usize)>>, 2>
Source§impl<'a, T, S, const D: usize> Cos for &RecordTensor<'a, T, S, D>
Operation for a referenced record tensor of some type.
impl<'a, T, S, const D: usize> Cos for &RecordTensor<'a, T, S, D>
Operation for a referenced record tensor of some type.
type Output = RecordContainer<'a, T, TensorView<(T, usize), Tensor<(T, usize), D>, D>, D>
Source§impl<'a, T, S, const D: usize> Cos for RecordTensor<'a, T, S, D>
Operation for a record tensor of some type.
impl<'a, T, S, const D: usize> Cos for RecordTensor<'a, T, S, D>
Operation for a record tensor of some type.