Hello, I am trying to create an array of (1/{input number})*100
where 1 increases incrementally until its the value of the input number
For example, if the input number is 7, I want the output array to be:
14.3
28.6
42.9
57.1
71.4
85.7
100.0
(equivalent to 1/7, 2/7, 3/7 etc till 7/7). Please does anyone know how to do this efficiently ideally in one of two operations rather than 7+?