Dmat: vector of the diagonal for the D matrix from the...

View source: R/pedigree.R

DmatR Documentation

vector of the diagonal for the D matrix from the decomposition A= TDT'

Description

numeric vector that should be the diagonal elements of the diagonal matrix D

Usage

Dmat(ped)

Arguments

ped

an object that inherits from class pedigree

Details

Determine the diagonal factor in the decomposition of the relationship matrix from a pedigree equal to TDT'. Where T is unit lower triangular and D is a diagonal matrix. This function returns a numeric vector with the entries of D

Value

a numeric vector

Examples

ped <- pedigree(sire = c(NA,NA,1, 1,4,5),
                dam  = c(NA,NA,2,NA,3,2), label= 1:6)
Dmat(ped)

pedigreemm documentation built on Nov. 25, 2023, 1:08 a.m.

Related to Dmat in pedigreemm...