pub trait L1Norm {
type Output;
// Required method
fn l1_norm(&self) -> Self::Output;
}Expand description
a trait for computing the L1 norm of a tensor or array
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".