macro_rules! multivariate_normal {
($mean:expr, $covariance:expr) => { ... };
($mean:expr, $covariance:expr, stream = $stream:expr) => { ... };
($mean:expr, $covariance:expr, dtype = $dtype:ty) => { ... };
($mean:expr, $covariance:expr, dtype = $dtype:ty, stream = $stream:expr) => { ... };
($mean:expr, $covariance:expr, shape = $shape:expr) => { ... };
($mean:expr, $covariance:expr, shape = $shape:expr, stream = $stream:expr) => { ... };
($mean:expr, $covariance:expr, shape = $shape:expr, dtype = $dtype:ty) => { ... };
(
$mean:expr, $covariance:expr, shape = $shape:expr, dtype = $dtype:ty,
stream = $stream:expr
) => { ... };
($mean:expr, $covariance:expr, key = $key:expr) => { ... };
($mean:expr, $covariance:expr, key = $key:expr, stream = $stream:expr) => { ... };
($mean:expr, $covariance:expr, key = $key:expr, dtype = $dtype:ty) => { ... };
(
$mean:expr, $covariance:expr, key = $key:expr, dtype = $dtype:ty,
stream = $stream:expr
) => { ... };
($mean:expr, $covariance:expr, shape = $shape:expr, key = $key:expr) => { ... };
(
$mean:expr, $covariance:expr, shape = $shape:expr, key = $key:expr,
stream = $stream:expr
) => { ... };
(
$mean:expr, $covariance:expr, shape = $shape:expr, key = $key:expr,
dtype = $dtype:ty
) => { ... };
(
$mean:expr, $covariance:expr, shape = $shape:expr, key = $key:expr,
dtype = $dtype:ty, stream = $stream:expr
) => { ... };
($mean:expr, $covariance:expr, shape = $shape:expr, key = $key:expr) => { ... };
(
$mean:expr, $covariance:expr, shape = $shape:expr, key = $key:expr,
stream = $stream:expr
) => { ... };
(
$mean:expr, $covariance:expr, shape = $shape:expr, key = $key:expr,
dtype = $dtype:ty
) => { ... };
(
$mean:expr, $covariance:expr, shape = $shape:expr, key = $key:expr,
dtype = $dtype:ty, stream = $stream:expr
) => { ... };
}
Expand description
Macro generated for the function crate::random::multivariate_normal
. See the function documentation for more details.