I’m trying to use “patterns” to determine random numbers. But decimal numbers don’t work, how do I fix them??
You chose random non repeating integers in the type parameter. Hence, you can only get integers. If you really want random float values, use the noiseCHOP with random mode and adjust the range in there or using a mathCHOP
@josefpelz is correct, the node as displayed will only produce integers
One method I occasionally use when I insist on using the pattern CHOP in this way, is to simply multiply the range by 10/100/1000, then multiply by 0.1/0.01/0.001 using a math CHOP immediately afterwards.