about.m

来自「关于混沌系统的李氏指数计算等混沌系统中重要参数计算的代码」· M 代码 · 共 24 行

M
24
字号
function varargout = about(varargin)% ABOUT Application M-file for about.fig%    FIG = ABOUT launch about GUI.%    ABOUT('callback_name', ...) invoke the named callback.% Last Modified by GUIDE v2.0 29-Dec-2002 02:39:41        fprintf('\n\n Matds is a MATLAB-based program for');        fprintf('\n   dynamical system investigation');        fprintf('\nAuthor: Govorukhin V., Rostov University.');        fprintf('\n      E-Mail: vgov@math.rsu.ru\n');	fig = openfig(mfilename,'reuse');	% Use system color scheme for figure:	set(fig,'Color',get(0,'defaultUicontrolBackgroundColor'));	% Generate a structure of handles to pass to callbacks, and store it. 	handles = guihandles(fig);	guidata(fig, handles);        varargout{1} = handles;%        pause;%        close;%        return;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?