parent_dsm {PRA} | R Documentation |
Resource-based 'Parent' Design Structure Matrix (DSM).
Description
Resource-based 'Parent' Design Structure Matrix (DSM).
Usage
parent_dsm(S)
Arguments
S |
Resource-Task Matrix 'S' giving the links (arcs) between resources and tasks. |
Value
The function returns the Resource-based 'Parent' DSM 'P' giving the number of resources shared between each task.
Examples
s <- matrix(c(1, 1, 0, 0, 1, 0, 0, 1, 1), nrow = 3, ncol = 3)
cat("Resource-Task Matrix:\n")
print(s)
resource_dsm <- parent_dsm(s)
cat("\nResource-based 'Parent' DSM:\n")
print(resource_dsm)
[Package PRA version 0.2.0 Index]