You are on page 1of 4

Comandos estadsticos: randn(p,q): Matriz de nmeros aleatorios de distribucin gaussiana de media cero, varianza uno y dimensin pxq.

pxq. rand(p,q): Matriz de nmeros aleatorios de distribucin uniforme [0,1] y dimensin pxq. mvnrnd(m,V): Genera vectores de nmeros aleatorios de distribucin gaussiana con vector de medias m y matriz de covarianza V. plot(x(1:100)): grafica 100 valores de la variable aleatoria x.

binopdf(x,n,p): Calcula la funcin de densidad de probabilidad de una distribucin binomial de parmetros n y p en los sucesos (componentes) de x. Ej.: binopdf(0:6,6,0.75) ans = 0.0002 0.0044

0.0330 0.1318 0.2966 0.3560 0.1780

binocdf(x,n,p): Evala la funcin de distribucin de una distribucin binomial de parmetros n y p en cada una de las componentes de x. Ej.: binocdf(0:6,6,0.75) ans = 0.0002 0.0046 0.0376 0.1694 0.4661 0.8220 1.0000

binoinv(x,n,p): Evala la inversa de la funcin de distribucin de una distribucin binomial de parmetros n y p en cada una de las componentes de x. Ej.: binoinv(0:0.2:1,6,0.75) ans = 0 4 4 5 5 6

binornd(n,p,m,k): Calcula una matriz mk formada por nmeros aleatorios generados a partir de una distribucin binomial de parmetros n y p. Ej.: binornd(10,0.8,3,3) ans = 8 10 6 6 9 10 799

binostat(n,p): Calcula la esperanza y la varianza de una distribucin binomial de parmetros n y p.

Ej.: [esperanza,varianza]=binostat(100,0.7) esperanza = 70 varianza = 21.0000

Distribuciones
Funciones de Densidad de Probabilidad (pdf) betapdf - Beta density binopdf - Binomial density chi2pdf - Chi square density exppdf - Exponential density fpdf - F density gampdf - Gamma density geopdf - Geometric density hygepdf - Hypergeometric density lognpdf - Lognormal density nbinpdf - Negative binomial density ncfpdf - Noncentral F density nctpdf - Noncentral t density ncx2pdf - Noncentral Chi-square density normpdf - Normal (Gaussian) density pdf - Density function for a specified distribution poisspdf - Poisson density raylpdf - Rayleigh density tpdf - T density unidpdf - Discrete uniform density unifpdf - Uniform density weibpdf - Weibull density

Funciones de Distribucin Acumulada (cdf) betacdf - Beta cdf binocdf - Binomial cdf cdf - Specified cumulative distribution function chi2cdf - Chi square cdf expcdf - Exponential cdf fcdf - F cdf gamcdf - Gamma cdf geocdf - Geometric cdf hygecdf - Hypergeometric cdf

logncdf - Lognormal cdf nbincdf - Negative binomial cdf ncfcdf - Noncentral F cdf nctcdf - Noncentral t cdf ncx2cdf - Noncentral Chi-square cdf normcdf - Normal (Gaussian) cdf poisscdf - Poisson cdf raylcdf - Rayleigh cdf tcdf - T cdf unidcdf - Discrete uniform cdf unifcdf - Uniform cdf weibcdf - Weibull cdf

Generadores de Nmeros Aleatorios betarnd - Beta random numbers binornd - Binomial random numbers chi2rnd - Chi square random numbers exprnd - Exponential random numbers frnd - F random numbers gamrnd - Gamma random numbers geornd - Geometric random numbers hygernd - Hypergeometric random numbers lognrnd - Lognormal random numbers mvnrnd - Multivariate normal random numbers mvtrnd - Multivariate t random numbers nbinrnd - Negative binomial random numbers ncfrnd - Noncentral F random numbers nctrnd - Noncentral t random numbers ncx2rnd - Noncentral Chi-square random numbers normrnd - Normal (Gaussian) random numbers poissrnd - Poisson random numbers random - Random numbers from specified distribution raylrnd - Rayleigh random numbers trnd - T random numbers unidrnd - Discrete uniform random numbers unifrnd - Uniform random numbers weibrnd - Weibull random numbers Estadsticos betastat - Beta mean and variance binostat - Binomial mean and variance chi2stat - Chi square mean and variance expstat - Exponential mean and variance fstat - F mean and variance gamstat - Gamma mean and variance geostat - Geometric mean and variance

hygestat - Hypergeometric mean and variance lognstat - Lognormal mean and variance nbinstat - Negative binomial mean and variance ncfstat - Noncentral F mean and variance nctstat - Noncentral t mean and variance ncx2stat - Noncentral Chi-square mean and variance normstat - Normal (Gaussian) mean and variance poisstat - Poisson mean and variance raylstat - Rayleigh mean and variance tstat - T mean and variance unidstat - Discrete uniform mean and variance unifstat - Uniform mean and variance weibstat - Weibull mean and variance

You might also like