RandMatContinuous: Create a Random Matrix: Continuous

Description Usage Arguments Value Examples

View source: R/RandMat.R

Description

Create a Random Matrix: Continuous

Usage

1
RandMatContinuous(p, d, sparsity, catMap = NULL, ...)

Arguments

p

the number of dimensions.

d

the number of desired columns in the projection matrix.

sparsity

a real number in (0,1) that specifies the distribution of non-zero elements in the random matrix.

catMap

a list specifying specifies which one-of-K encoded columns in X correspond to the same categorical feature.

...

used to handle superfluous arguments passed in using paramList.

Value

A random matrix to use in running RerF.

Examples

1
2
3
4
5
p <- 8
d <- 3
sparsity <- 0.25
set.seed(4)
(a <- RandMatContinuous(p, d, sparsity))

rerf documentation built on May 2, 2019, 8:16 a.m.