matlab中for循環的循環變量在循環體中不能改變

matlab中for循環的循環變量在循環體中不能改變web

for i = 1:50
if...
	i=i-1
else
	...
end

i-1是不會起做用
用while吧svg