Consider the following code:
hz = N[28 2^(-(n/6)) , {Infinity, 3}]; Column[Table[{n, hz}, {n, 36, 41}]]
Why do I get two different types of results digitwise?
Thanks both.
N makes a number with accuracy '3'. But the displaying of these numbers is a different thingÂ…
To control the displaying of numbers use e.g. NumberForm:
hz=28 2^(-(n/6)); Column[Table[{n,NumberForm[N@hz,{\[Infinity],3}]},{n,36,41}]]