computeUDelta: Compute U and Delta for a given set of matrices and a V

View source: R/optimize.R

computeUDeltaR Documentation

Compute U and Delta for a given set of matrices and a V

Description

Function to compute U and Delta for a given set of matrices and V.

Usage

computeUDelta(mat_list, V, orthogonal = TRUE)

Arguments

mat_list

A list containing numeric matrices

V

A numeric matrix of dimension ncol(matrix1) * ncol(matrix1)

orthogonal

Compute U with orthonormal columns. Default TRUE

Value

list of U and delta

Examples

set.seed(1231)
mymat <- createRandomMatrices(n = 3, ncols = 3, nrows = 3)
set.seed(325)
mymat_rand <- createRandomMatrices(n = 1, ncols = 3, nrows = 3)[[1]]
out <- computeUDelta(mymat, svd(mymat_rand)$v)

amalthomas111/SBF documentation built on Sept. 2, 2022, 11:27 a.m.