资源简介

M/M/N 排队系统(多服务员排队系统)的仿真(难度系数:) 多服务员排队系统在仿真上较单服务员排队系统要复杂的多,在此先对该排队系统作一些必要的假设: (1)顾客源是无穷的; (2)排队长度没有限制; (3)到达系统的顾客按先到先服务原则依次进入服务; (4)服务员在仿真过程中没有休假; (5)顾客到达时排成一队,当有服务台空闲时进入服务状态; 按照顾客到达的时间概率分布为泊松分布,顾客服务时间的长短服从负指数分布,试完成M/M/1排队系统的仿真。系统输入为:泊松分布和负指数分布中的参数,服务台个数,系统输出是:平均等待时间、平均队长、服务利用率。要求有输入、输出界面、顾客到达和离开的仿真过程表示。 这个资源可以直接运行

资源截图

代码片段和文件信息

function varargout = MMN(varargin)
%MMN排队系统  制作人:Tazen Fee 2012年12月

% MMN M-file for MMN.fig
%      MMN by itself creates a new MMN or raises the existing
%      singleton*.
%
%      H = MMN returns the handle to a new MMN or the handle to
%      the existing singleton*.
%
%      MMN(‘CALLBACK‘hobjecteventDatahandles...) calls the local
%      function named CALLBACK in MMN.M with the given input arguments.
%
%      MMN(‘Property‘‘Value‘...) creates a new MMN or raises the
%      existing singleton*.  Starting from the left property value pairs are
%      applied to the GUI before MMN_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to MMN_OpeningFcn via varargin.
%
%      *See GUI Options on GUIDE‘s Tools menu.  Choose “GUI allows only one
%      instance to run (singleton)“.
%
% See also: GUIDE GUIDATA GUIHANDLES

% Edit the above text to modify the response to help MMN

% Last Modified by GUIDE v2.5 06-Dec-2012 08:32:20

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘       mfilename ...
                   ‘gui_Singleton‘  gui_Singleton ...
                   ‘gui_OpeningFcn‘ @MMN_OpeningFcn ...
                   ‘gui_OutputFcn‘  @MMN_OutputFcn ...
                   ‘gui_LayoutFcn‘  []  ...
                   ‘gui_Callback‘   []);
if nargin && ischar(varargin{1})
    gui_State.gui_Callback = str2func(varargin{1});
end

if nargout
    [varargout{1:nargout}] = gui_mainfcn(gui_State varargin{:});
else
    gui_mainfcn(gui_State varargin{:});
end
% End initialization code - DO NOT EDIT


% --- Executes just before MMN is made visible.
function MMN_OpeningFcn(hobject eventdata handles varargin)
% This function has no output args see OutputFcn.
% hobject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
% varargin   command line arguments to MMN (see VARARGIN)

% Choose default command line output for MMN
handles.output = hobject;

pic2=imread(‘shouyintai.jpg‘);
set(handles.sever1‘CData‘pic2);
set(handles.sever2‘CData‘pic2);
set(handles.sever3‘CData‘pic2);
set(handles.sever4‘CData‘pic2);

global N;
N=1;
global g;
g=1;
global h;
h=2;
global Tmax;
Tmax=30;
global vf;
vf=1;
%下面的代码用于输出图像
global Tey;
Tey=0;
global Ley;
Ley=0;
global Sey;
Sey=0;
global Tx;
Tx=0;
% Update handles structure
guidata(hobject handles);

% UIWAIT makes MMN wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = MMN_OutputFcn(hobject eventdata handles) 
% varargout  cell array for returning output args (see VARARGOUT);
% hobject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Get default command line ou

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2013-02-02 23:13  MMN排队\
     文件        4845  2012-12-03 21:43  MMN排队\matlab.jpg
     文件       42336  2012-12-08 21:55  MMN排队\MMN.asv
     文件       10511  2013-02-02 23:09  MMN排队\MMN.fig
     文件       31598  2013-02-02 23:11  MMN排队\MMN.m
     文件         157  2013-02-02 23:20  MMN排队\readme.txt
     文件        7744  2012-12-06 10:32  MMN排队\shouyintai.jpg

评论

共有 条评论