-
Noob question: decimal points in random() expression
Hi all, I’m sure this is a very very basic question but I haven’t found any answer to this no matter where I look. I have the following expression that picks random numbers from minmax values:
wiggle(random(1,2),random(20,100));
but I want to be able and draw even smaller numbers, ie decimals, but when I write the following
wiggle(random(.5,2),random(20,100));
it simply doesn’t work. Also tried
wiggle(random(0.5,2),random(20,100));
It must be some sort of formatting/syntax problem, however I can’t find a simple definitive answer to that.
Thanks