MATLAB中FOR循环表达式为小数,怎么设置循环语句中的下标

2024-12-25 14:29:11
推荐回答(1个)
回答1:

加一个辅助变量如何?
icount=1;
for i=0.1:0.1:0.9
{执行循环}
icount=icount+1;
end