reinflateMatrix: Create a matrix from a matrix of scores and loadings similar...

View source: R/utils.R

reinflateMatrixR Documentation

Create a matrix from a matrix of scores and loadings similar to a component model.

Description

Create a matrix from a matrix of scores and loadings similar to a component model.

Usage

reinflateMatrix(A, B)

Arguments

A

I x N matrix corresponding to scores for N components.

B

J x N matrix corresponding to loadings for N components.

Value

M, an I x J matrix.

Examples

A = rnorm(108)
B = rnorm(100)
M = reinflateMatrix(A,B)

CMTFtoolbox documentation built on Aug. 23, 2025, 1:11 a.m.