MATLAB中的跳转命令 [英] Jump command in MATLAB

查看:817
本文介绍了MATLAB中的跳转命令的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用MATLAB的m文件编辑器,因此我需要从一行跳到另一行. 如果我需要从For ... end内部跳转,则不能使用通常的"while" 技术.
无论如何,是否可以从一行跳到另一行,例如C中的goto?

I'm working with the m-file editor of MATLAB and I need to jump from one line to another. If I need to jump from inside a For...end, I can't use the usual "while" technique.
Is there anyway to jump from a line to another, like goto in C?

推荐答案

MATLAB中没有goto语句,但是还有一些其他与循环一起使用的命令可能会对您有所帮助:

There is no goto statement in MATLAB, but there are a few other commands for use with loops that may help you:

  • continue :此语句将跳过其余命令在for或while循环中,然后继续进行下一个迭代.
  • break :此语句将终止执行for或while循环.

这篇关于MATLAB中的跳转命令的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆