请问关于MATLAB的commend window中提示符的问题~!

来源:百度知道 编辑:UC知道 时间:2024/05/13 17:52:17
请问我的MATLAB的commend window中提示符(prompt)变成了K>>而不是只是>>, 为什么会这样?>>前的大写英文字母代表什么啊? 怎么设置?
谢谢~!!

对,应该是设置了断点的原因,可以用命令dbquit退出来

>> help debug

Debugging commands.

dbstop - Set breakpoint.
dbclear - Remove breakpoint.
dbcont - Resume execution.
dbdown - Change local workspace context.
dbmex - Enable MEX-file debugging.
dbstack - List who called whom.
dbstatus - List all breakpoints.
dbstep - Execute one or more lines.
dbtype - List M-file with line numbers.
dbup - Change local workspace context.
dbquit - Quit debug mode.

When a breakpoint is hit, MATLAB goes into debug mode, the debugger
window becomes active, and the prompt changes to a K>. Any MATLAB
command is allowed at the prompt.

是否是设置了断点?程序中途停止了吧。