⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 goto.m

📁 一个MATLAB的应用程序
💻 M
字号:
function dummy = goto(cc,func,timeout)
% GOTO executes the target to the entry of a function
%   GOTO(CC) places a breakpoint at the entry point to the 'main' function 
%   then restarts the target and waits for it to hit a breakpoint.  If
%   successful, this method will set the target's program counter (PC) to 
%   the beginning of main().  This permits the target to initialize any 
%   statically defined variables.
%
%   GOTO(CC,FUNC) same as above, except in this form the target will halt
%   upon reaching the specified target function: FUNC.  The function is
%   specified as a string.
%
%   Notes - The GOTO will return upon reaching the first breakpoint that
%   is encountered in the program execution.  Therefore, it is possible that
%   GOTO will complete with a target location other than the specified
%   function if there are any existing breakpoints.
%
%   See also RUN, INSERT, DELETE.

% Copyright 2002 The MathWorks, Inc.

⌨️ 快捷键说明

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