The default
[1..5]
gives this
[1,2,3,4,5]
and can also be done with the range function. Is it possible to change the step size between the points, so that I could get something like the following instead?
[1,1.5,2,2.5,3,3.5,4,4.5,5]
|
The default
gives this
and can also be done with the range function. Is it possible to change the step size between the points, so that I could get something like the following instead?
|
|||
|
|
|
You have to be careful with floating point arithmetic. It can't represent 1.1 precisely, so if you try
Best way is more like:
|
|||
|
|
|
Actually,
and
For more information, see http://en.wikibooks.org/wiki/Haskell/Syntactic_sugar |
|||
|
|