• 大小: 34KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-08
  • 语言: Matlab
  • 标签: M/M/N  matlab  gui  

资源简介

M/M/N 排队系统(多服务员排队系统)的matlab仿真,GUI界面,附源代码 按照顾客到达的时间概率分布为泊松分布,顾客服务时间的长短服从负指数分布,试完成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

评论

共有 条评论