pub trait Trace {
    type Output;

    fn trace(self) -> Self::Output;
}
Expand description

Represents types for which the trace can be computed.

Required Associated Types

The type returned by the trace.

Required Methods

The trace (typically, the sum of the eigenvalues, or the sum of the diagonal elements $\sum_i A_{ii}$).

Example
// TODO

Implementations on Foreign Types

Implementors