miscTools (version 0.6-22)

vecli: Vector of linear independent values

Description

Returns a vector containing the linear independent elements of a symmetric matrix (of full rank).

Usage

vecli( m )

Arguments

m

symmetric matrix

See Also

veclipos.

Examples

Run this code
# NOT RUN {
   # a symmetric n x n matrix
   m <- cbind(c(11,12,13),c(12,22,23),c(13,23,33))
   vecli(m)  # returns: 11 12 13 22 23 33
# }

Run the code above in your browser using DataLab