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

fsqfindld(lambda,mu,c,m)
%fsqfindld(lambda,mu,c,m)
%   This function finds the number of machines down (ld) 
%   for a machine repair problem (finite source queue).

function out = fsqfindld(lambda,mu,c,m)

lu = fsqfindlu(lambda,mu,c,m);
ld = m - lu;

out = ld;

Contact us at files@mathworks.com