clupoints_n_1¶
Generate points from their n-dimensional projections on a cluster-supporting
line, placing each point on a hyperplane orthogonal to that line and centered
at the point's projection, using the normal distribution (μ=0, σ=lat_disp
).
This function's main intended use is by the clugen()
function, generating
the final points when the point_dist_fn
parameter is set to "n-1"
.
Arguments¶
projs
: Point projections on the cluster-supporting line (\(p \times n\) matrix).lat_disp
: Standard deviation for the normal distribution, i.e., cluster lateral dispersion.line_len
: Length of cluster-supporting line (ignored).clu_dir
: Direction of the cluster-supporting line (unit vector).clu_ctr
: Center position of the cluster-supporting line (ignored).
Return values¶
points
: Generated points (\(p \times n\) matrix).
Note¶
This function is stochastic. For reproducibility set the PRNG seed with
cluseed()
as discussed in the Reference.