Learn R Programming

TFORGE (version 0.1.16)

conf_ss1fixedtrace: Eigenvalue confidence interval under trace=0 and sum of square constraint

Description

When a 3x3 symmetric matrix has a trace of zero and the sum of squared eigenvalues is one, then the eigenvalues of the matrix lie on a circle in 3D space. Under these situations, this function calculates a confidence region (i.e. an interval) for the eigenvalues of the population's extrinsic mean. The function conf_ss1fixedtrace_inregion() returns whether a set of eigenvalues is inside a confidence region returned by conf_fixedtrace().

Usage

conf_ss1fixedtrace(x, alpha = 0.05, B = 1000, check = TRUE)

conf_ss1fixedtrace_inregion(evals, cr)

Value

A list:

  • est: the eigenvalues of the mean matrix

  • lower and upper: the two ends of the confidence interval

  • Omega: The estimated covariance of the (projected) eigenvalues

  • threshold: The threshold (estimated via resampling) on the statistic

Arguments

x

A single sample of 3x3 symmetric matrices. x must be either an fsm object or something that as_fsm() can parse.

alpha

Desired significance level of the approximate confidence region.

B

Number of bootstrap resamples.

check

If TRUE, then the extrinsic means of 100 new resamples will be used to check the coverage of the region.

evals

A set of eigenvalues with trace of zero and sum of squares of one.

cr

A confidence region returned by conf_ss1fixedtrace().