macro_rules! norm_p {
($array:expr, $ord:expr) => { ... };
($array:expr, $ord:expr, stream = $stream:expr) => { ... };
($array:expr, $ord:expr, axes = $axes:expr) => { ... };
($array:expr, $ord:expr, axes = $axes:expr, stream = $stream:expr) => { ... };
($array:expr, $ord:expr, keep_dims = $keep_dims:expr) => { ... };
($array:expr, $ord:expr, keep_dims = $keep_dims:expr, stream = $stream:expr) => { ... };
($array:expr, $ord:expr, axes = $axes:expr, keep_dims = $keep_dims:expr) => { ... };
(
$array:expr, $ord:expr, axes = $axes:expr, keep_dims =
$keep_dims:expr, stream = $stream:expr
) => { ... };
($array:expr, $ord:expr, axes = $axes:expr, keep_dims = $keep_dims:expr) => { ... };
(
$array:expr, $ord:expr, axes = $axes:expr, keep_dims =
$keep_dims:expr, stream = $stream:expr
) => { ... };
}
Expand description
Macro generated for the function crate::linalg::norm_p
. See the function documentation for more details.