how to define a random variable in matlab code?

10 visualizaciones (últimos 30 días)
MANJUNATHA
MANJUNATHA el 11 de En. de 2013
how to define random variable in matlab..

Respuestas (2)

Azzi Abdelmalek
Azzi Abdelmalek el 11 de En. de 2013
Editada: Azzi Abdelmalek el 11 de En. de 2013
x=rand
%or
v=rand(3,4)
%or
randi(10,3,4)

Wayne King
Wayne King el 11 de En. de 2013
Editada: Wayne King el 11 de En. de 2013
That depends what you mean.
Generally what you mean is that you want some way of sampling from some probability law (distribution).
In that case, you use a random number generator to generate numbers that follow a particular distribution.
For example:
Uniform distribution on [-\pi, \pi]
x = -pi +2*pi*rand(1000,1);
hist(x)
Base MATLAB has random number generators for uniform and Gaussian random variables (randn) and random integers (randi)
The Statistics Toolbox has random number generators for a large number of common distributions.
With some ingenuity, you can use the uniform random number generator to model a large set of random variables.

Categorías

Más información sobre Random Number Generation en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by