pub trait CrossProduct<T> {
type Output;
// Required method
fn cross(self, other: T) -> Self::Output;
}Expand description
The cross product of two rank-1 tensors.
pub trait CrossProduct<T> {
type Output;
// Required method
fn cross(self, other: T) -> Self::Output;
}The cross product of two rank-1 tensors.