Community Tip - Stay updated on what is happening on the PTC Community by subscribing to PTC Community Announcements. X
Hello,
How can I use "rnd" function to generate random numbers between [-1,1] rather than [0,1] ?
Thank you.
Solved! Go to Solution.
rnd(2) -1
You may use a selfdefined function rand(a,b):=a + rnd(b-a)
If you need a vector of more values you may use runif(100,-1,1)
rnd(2) -1
You may use a selfdefined function rand(a,b):=a + rnd(b-a)
If you need a vector of more values you may use runif(100,-1,1)
Thank you.