Smooth Random Number Functions

News and research about CPU microarchitecture and software optimization
Post Reply
jackninja1
Posts: 1
Joined: 2020-08-31, 11:16:55

Smooth Random Number Functions

Post by jackninja1 » 2020-08-31, 11:24:28

Dear Dr. Fog,

First, thank you for your valuable work with your VCL software. All your work is a very valuable resource when in comes to high performance code.

My question concerns the following: I am looking for resources about smooth random number generators. Do you happen to know what a good place is to find information about that topic? To my understanding, all your work around random number generators is for completely random numbers. Are there any performant libraries that allow for the generation of random numbers that are locally smooth around a N-dimensional point?

I imagine that you are very busy and I am not even sure if you are open to these types of questions. In any case, again, thank you for your work and I wish you all the best!

Kind regard,

Jackninja1,
The Netherlands

agner
Site Admin
Posts: 75
Joined: 2019-12-27, 18:56:25
Contact:

Re: Smooth Random Number Functions

Post by agner » 2020-08-31, 13:23:24

I guess you mean a multivariate normal distribution.
You can make N independent normally distributed variables using the Box Muller transform.

Post Reply