continue
📝 Syntax
📄 Description
💡 Example
for i=1:10
if (i == 5)
continue;
disp('never here')
disp(i)
else
disp(i)
end
end
🔗 See also
🕔 History
Version
📄 Description
Last updated