Community Tip - If community subscription notifications are filling up your inbox you can set up a daily digest and get all your notifications in a single email. X
How to generate random values in Mathcad exactly like randn function generates in matlab?
Solved! Go to Solution.
@SK_9833315 wrote:
How to generate random values in Mathcad exactly like randn function generates in matlab?
That depends on how you would define "exactly" 🙂
If your goal is to create a couple of normal distributed random numbers, rnorm(n,0,1) may be all you need, as shown by Francesco.
In Matlab the output of randn is either a single scalar or a multidimensional matrix (n x 1 vector being only a special case of it). Mathcad on the other hand will only create a n x 1 vector. So this is a limitation, but on the other hand its easier in Mathcad to use different values for mean and standard deviation.
To create single scalars and matrices in Mathcad you will have to use some additional bits of code.
Here are some examples:
If you use these more often, it may be convenient to create some functions to do the job:
rnorm ?:
@SK_9833315 wrote:
How to generate random values in Mathcad exactly like randn function generates in matlab?
That depends on how you would define "exactly" 🙂
If your goal is to create a couple of normal distributed random numbers, rnorm(n,0,1) may be all you need, as shown by Francesco.
In Matlab the output of randn is either a single scalar or a multidimensional matrix (n x 1 vector being only a special case of it). Mathcad on the other hand will only create a n x 1 vector. So this is a limitation, but on the other hand its easier in Mathcad to use different values for mean and standard deviation.
To create single scalars and matrices in Mathcad you will have to use some additional bits of code.
Here are some examples:
If you use these more often, it may be convenient to create some functions to do the job:
Thanks it was helpful