No BSD License  

Highlights from
Queueing Systems Toolbox

from Queueing Systems Toolbox by Bill Higley
These deal with an M/M/c queue and a finite source queue

mmcfindewq(lambda,mu,c)
%mmcfindewq(lambda,mu,c)
%   This function finds the average waiting time
%   for an M/M/c queueing system.

function out = mmcfindewq(lambda,mu,c)

lq = mmcfindlq(lambda,mu,c);
ewq = lq/lambda;

out = ewq;

Contact us at files@mathworks.com