PCMTreeTableAncestors.Rd
A matrix (table) of ancestors/descendants for each node in a tree
PCMTreeTableAncestors(tree, preorder = PCMTreePreorder(tree))
tree | a phylo object |
---|---|
preorder | an integer vector returned by a previous call to
|
an integer square matrix of size M x M where M is the number of nodes in the tree. Element j on row i is 0 if j is not an ancestor of i or a positive integer equal to the position of j on the path from the root to i if j is an ancestor of i.
This function has time and memory complexity O(M^2), where M is the number of nodes in the tree. It can take several minutes and gigabytes of memory on trees of more than 10000 tips.