mgc.sims.joint {mgc} | R Documentation |
Joint Normal Simulation
Description
A function for Generating a joint-normal simulation.
Usage
mgc.sims.joint(n, d, eps = 0.5)
Arguments
n |
the number of samples for the simulation. |
d |
the number of dimensions for the simulation setting. |
eps |
the noise level for the simulation. Defaults to |
Value
a list containing the following:
X |
|
Y |
|
Details
Given: ,
is the identity matrix of size
,
is the matrix of ones of size
.
Simulates
points from
, where:
,
and controls the noise for higher dimensions.
For more details see the help vignette:
vignette("sims", package = "mgc")
Author(s)
Eric Bridgeford
Examples
library(mgc)
result <- mgc.sims.joint(n=100, d=10) # simulate 100 samples in 10 dimensions
X <- result$X; Y <- result$Y
[Package mgc version 2.0.2 Index]