Matlab简单循环

时间:2015-04-27 11:54:57

标签: matlab

我正在尝试创建一个简单的循环,如果必须迭代超过25次,它将退出。

这是我的尝试:

for x = 1 : size(adj, 1)   

    if x > 25
        break
    end

    % some code here for printing but I've omitted it since not relevant

end

抱歉,我试过谷歌搜索它,我不知道为什么它不起作用。

1 个答案:

答案 0 :(得分:5)

如果您知道限制为25,则可以更改循环条件:

for x=1:25
% your code here

或者,您可以在调用循环之前定义上限

my_limit = min(25,size(adj,1));
for x = 1:my_limit
% your code here

希望这有帮助!