View source: R/mfpp.R View source: R/minscore_PEM.R
minscore_PEM | R Documentation |
Calculate minimal score value (PMIN) of possible project scenarios.
minscore_PEM(PEM,P=PEM, Q=1-PEM)
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 |
score |
minimal score value of a project (a numeric value). |
Zsolt T. Kosztyan*, Aamir Saghir
e-mail: kzst@gtk.uni-pannon.hu
KosztyƔn, Z. T. (2022). MFPP: Matrix-based flexible project planning. SoftwareX, 17, 100973.
tpc
, tpq
, tpt
, tpr
,maxscore_PEM
, generatepdm
, phase3
, percent
.
# 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.