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().
conf_ss1fixedtrace(x, alpha = 0.05, B = 1000, check = TRUE)conf_ss1fixedtrace_inregion(evals, cr)
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
A single sample of 3x3 symmetric matrices. x must be either an fsm object or something that as_fsm() can parse.
Desired significance level of the approximate confidence region.
Number of bootstrap resamples.
If TRUE, then the extrinsic means of 100 new resamples will be used to check the coverage of the region.
A set of eigenvalues with trace of zero and sum of squares of one.
A confidence region returned by conf_ss1fixedtrace().