<div>Hi,</div><div><br></div>I need to iterate over a float range between 0.1 and 1.0 with a step size of 0.1. <div><br></div><div>My foreach loop looks like:</div><div><br></div><div><div>foreach i in [0.1:1.0:0.1]</div><div>{</div><div>/* == generate fdfs for different voltages == */</div><div>fdf_proc_vn[i]=gen_fdf(i,fdf_proc_v1);</div></div><div>}</div><div><br></div><div>I am getting the following error:</div><div><br></div><div>Supplied array index type (float) does not match the declared index type (int)<br></div><div><br></div><div>How to declare/define array such that it can accept float index type?</div><div><br></div><div>Thanks,</div><div>Ketan</div><div><br></div>