1%{ @file map_jointpdf_derivative.m
2 % @brief Partial derivative at zero of a MAP
's joint PDF
4 % @author LINE Development Team
8 % @brief Computes partial derivative at zero of MAP joint PDF
11 % This function computes the partial derivative at 0 of a MAP's joint
12 % probability density function. Based on A. Horvath et al.
13 %
"A Joint Moments Based Analysis of Networks of MAP/MAP/1 Queues".
17 % gamma = map_jointpdf_derivative(MAP, iset)
22 % <tr><th>Name<th>Description
23 % <tr><td>MAP<td>Markovian Arrival Process {D0, D1}
24 % <tr><td>iset<td>Vector of indices defining the partial derivative
29 % <tr><th>Name<th>Description
30 % <tr><td>gamma<td>Calculated derivative value
33function gamma = map_jointpdf_derivative(MAP, iset)
34% partial derivative at 0 of a MAP
's joint PDF
35% A. Horvath et al. A Joint Moments Based Analysis of Networks of
42 gamma = gamma * MAP{1}^j * MAP{2};
44gamma = gamma * ones(n,1);