我在编程时遇到要进行for循环的问题:
for n=i:0.1;j-----i、j都是变量通过其它语句算得。
f(n)---对n进行处理
end
但是运行时说i、j变量不存在或未定义,我该怎么写才能运行成功啊?
或者还有什么其他方法可以实现相同的功能啊?要有循环计算的。
急处理这个问题,请大家一定要帮忙啊!谢谢各位了!
For example: we define a function:f(n)=n+1.
Check it with the following :
j=10;
for n=i:0.1:j
n+1
end
There is no problem!
Usually,we don't use 'i' or 'j' as a avariable number.