minscore_PEM {mfpp} | R Documentation |
Function to calculate minimal score value of possible project scenarios.
Description
Calculate minimal score value (PMIN) of possible project scenarios.
Usage
minscore_PEM(PEM,P=PEM, Q=1-PEM)
Arguments
PEM |
An N by N upper triangular adjacency matrix of logic network (a numeric matrix). |
P |
N by N score matrix of task/dependency inclusion (a numeric matrix). The default P matrix is P=PEM |
Q |
N by N score matrix of task/dependency exclusion (a numeric matrix). The default Q matrix is Q=1-PEM |
Value
score |
minimal score value of a project (a numeric value). |
Author(s)
Zsolt T. Kosztyan*, Aamir Saghir
e-mail: kzst@gtk.uni-pannon.hu
References
KosztyƔn, Z. T. (2022). MFPP: Matrix-based flexible project planning. SoftwareX, 17, 100973.
See Also
tpc
, tpq
, tpt
, tpr
,maxscore_PEM
, generatepdm
, phase3
, percent
.
Examples
# Calculation of minimal score value of a project scenarios using MFPP package.
# Define a 3 by 3 upper traingular logic domain of a project scenario.
PEM= matrix(c(0.8,0.4,0.8,
0.0,0.7,0.7,
0.0,0.0,0.4), ncol=3, byrow=TRUE)
# Define a score matrix of task/dependency inclusion.
P=PEM
# Define a score matrix of task/dependency exclusion.
Q=1-P
# Calculation of minimal score value for the above specification
# of a project scenario using MFPP package.
minscore_PEM(PEM,P,Q)
[Package mfpp version 0.0.7 Index]