我想在函数中添加一个计数器,以便它知道它被调用了多少次。
这是我目前正在使用的。
function Foo ()
persistent counter;
if (isempty(counter))
counter = 0
end
counter = counter + 1
end
第 3-5 行看起来像 hack。
如何在不重置或使用 isempty 的情况下直接将计数器初始化为 0?
我想在函数中添加一个计数器,以便它知道它被调用了多少次。
这是我目前正在使用的。
function Foo ()
persistent counter;
if (isempty(counter))
counter = 0
end
counter = counter + 1
end
第 3-5 行看起来像 hack。
如何在不重置或使用 isempty 的情况下直接将计数器初始化为 0?