print_mspca: Print mspca output

View source: R/main.R

print_mspcaR Documentation

Description

Displays the output of the msPCA algorithm.

Usage

print_mspca(sol_object, C)

Arguments

sol_object

A list. The output of the mspca or twp function.

C

A matrix. The correlation or covariance matrix (p x p).

Value

None. Prints output to console.

Examples

library(datasets)
TestMat <- cor(datasets::mtcars)
mspcares <- mspca(TestMat, 2, c(4,4))
print_mspca(mspcares, TestMat)

msPCA documentation built on May 16, 2026, 1:08 a.m.