powered by
Convert a demand coefficient matrix into a demand structural tree list.
matrix_to_dstl( x, names.commodity = paste("comm", 1:nrow(x), sep = ""), names.agent = paste("agt", 1:ncol(x), sep = "") )
a matrix.
names of commodities. They will be the names of leaf nodes of each demand structural tree.
names of agents. They will be the names of root nodes of those demand structural trees.
A demand structural tree list.
# NOT RUN { A <- matrix(c( 0, 0, 0, 1, 8, 6, 1, 0, 4, 2, 1.5, 0, 2, 1.5, 0.5, 0 ), 4, 4, TRUE) dstl <- matrix_to_dstl(A) node_print(dstl[[1]]) # } # NOT RUN { # }
Run the code above in your browser using DataLab