• 大小: 155KB
    文件类型: .7z
    金币: 2
    下载: 2 次
    发布日期: 2021-05-16
  • 语言: Matlab
  • 标签: 11  

资源简介

MATLAB课程设计(数字拼图游戏).7z

资源截图

代码片段和文件信息

function varargout = test2(varargin)
% TEST2 MATLAB code for test2.fig
%      TEST2 by itself creates a new TEST2 or raises the existing
%      singleton*.
%
%      H = TEST2 returns the handle to a new TEST2 or the handle to
%      the existing singleton*.
%
%      TEST2(‘CALLBACK‘hobjecteventDatahandles...) calls the local
%      function named CALLBACK in TEST2.M with the given input arguments.
%
%      TEST2(‘Property‘‘Value‘...) creates a new TEST2 or raises the
%      existing singleton*.  Starting from the left property value pairs are
%      applied to the GUI before test2_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to test2_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 test2

% Last Modified by GUIDE v2.5 04-Jul-2017 23:03:56

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘       mfilename ...
                   ‘gui_Singleton‘  gui_Singleton ...
                   ‘gui_OpeningFcn‘ @test2_OpeningFcn ...
                   ‘gui_OutputFcn‘  @test2_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 test2 is made visible.
function test2_OpeningFcn(hobject eventdata handles varargin)
    global t
    t=timer(‘TimerFcn‘{@timercallbackhandles}‘ExecutionMode‘ ‘fixedRate‘ ‘Period‘ 1);

% 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 test2 (see VARARGIN)

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

% Update handles structure
guidata(hobject handles);

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


% --- Outputs from this function are returned to the command line.
function varargout = test2_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 output from handles structure
varargout{1} = handles.output;

global  G Snum t
G=[1 2 3;4 5 6;7 8 0];%定义正确答案
Snum=0;%步数变量
start(t);%定时器开始计时

% --- Executes on button press in Reset.
function Reset_Callback(hobject eventd

评论

共有 条评论