| bwproj | R Documentation |
Projects a set of high-dimensional Gaussian distributions specified by their means and covariance matrices onto a lower-dimensional subspace using the distance-preserving projection method.
bwproj(means, covs, target_dim = 2, max_iter = 100, verbose = TRUE)
means |
an |
covs |
a |
target_dim |
an integer specifying the target lower dimension |
max_iter |
an integer specifying the maximum number of iterations for the optimization (default is 100). |
verbose |
a logical flag indicating whether to print progress messages (default is TRUE). |
a named list containing
the (p,d) projection matrix mapping original space to the lower-dimensional space.
the (n,d) matrix of projected Gaussian means.
the (d,d,n) array of projected Gaussian covariance matrices.
a vector of objective function values at each iteration.
a vector of gradient norms at each iteration.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.