RandomMatrixModel: Type constructors for random matrices and ensembles of random...

Description Arguments Value Usage Examples

Description

Provides type constructors for creating random matrices. Various studies can be initiated afterward.

Arguments

real

Whether the matrix has real components or not

n

Number of rows

m

Number of columns

m1

Number of columns

m2

Number of columns

sd

Standard deviation of the sample population

count

Number of matrices in the ensemble

model

The random matrix model to use

Value

Returns a model type. Use with rmatrix or Ensemble to generate actual matrices.

Usage

RandomMatrixModel(real=TRUE, ...)

WignerMatrix(x, model)

WishartModel(n, m, sd=1, ...)

JacobiModel(n, m1, m2, ...)

Ensemble(count, model)

Examples

1
2
3
model <- WignerModel(10)
m <- rmatrix(model)
e <- Ensemble(20, model)

zatonovo/futile.matrix documentation built on May 4, 2019, 9:11 p.m.