Estadística
12 Preguntas
0 Respuestas
CLASIFICACIÓN
194.306
of 300.369
REPUTACIÓN
0
CONTRIBUCIONES
12 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
25.0%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.936
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 168.436
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
how to simulate from a bivarite poisson(lamda1, lamda2, lamda3) using matlab
hi there please i need help in trying to simulate a poisson distribution with three lamda.i know for a single poisson we: clc ...
más de 10 años hace | 0 respuestas | 0
0
respuestasPregunta
how to draw the cdf and pdf of a this multinomial distribution
clc clear all format compact rng(970,'v4') X1=[]; X2=[]; X3=[]; U=[]; Y=[]; p =[0.0080 0.0270 0.1250 0.0360 0.0600 0.13...
más de 10 años hace | 0 respuestas | 0
0
respuestasPregunta
how to simulate 10000 samples from a multinomial distribution with p1=0.5,p2=0.3p3=0.2
how to simulate 10000 samples from a multinomial distribution with p1=0.5,p2=0.3p3=0.2
más de 10 años hace | 1 respuesta | 0
1
respuestaPregunta
how to represent my outcomes from a multinomial distribution in terms of y=1:10
clc clear all format compact rng(970,'v4') X=[]; X1=[]; X2=[]; X3=[]; U=[]; p =[0.0080 0.0270 0.125...
más de 10 años hace | 0 respuestas | 0
0
respuestasPregunta
answers 0 votes Hi All, pls i need a command line to plot a histogram,cdf and pdf of the pasted matlab program. (binomial n=5, p=0.4)
answers 0 votes Hi All, pls i need a command line to plot a histogram,cdf and pdf of the pasted matlab program. (binomial n=5,...
más de 10 años hace | 0 respuestas | 0
0
respuestasPregunta
Hi All, pls i need a command line to plot a histogram,cdf and pdf of the pasted matlab program. (binomial n=5, p=0.4)
clc clear all format compact rng(970,'v4') X =[]; U =[]; for i = (1:10000) r =rand; if r <=0.07776 x=0;...
más de 10 años hace | 0 respuestas | 0
0
respuestasPregunta
generating 10 samples from a binomial using a fair dice.
clc clear all format compact rng(970,'v4') U=[]; X=[]; R = rand(10,1) % generate a sample in Unif(0,1) ...
más de 10 años hace | 1 respuesta | 0
1
respuestaPregunta
how can i plot the pdf of a bernoulli using matlab
which algorithm can i use in plotting the cdf of a bernoulli using matlab
más de 10 años hace | 1 respuesta | 0
1
respuestaPregunta
how to plot the cdf of a bernoulli using matlab
how do i plot the cdf of a bernoulli using matlab
más de 10 años hace | 1 respuesta | 0
1
respuestaPregunta
results coming out in terms of fprintf 0 and fprint 1
Hi, i am try to plot a histogram using my outcomes i got from generating samples from a bernoulli. it comes out as fprint 0 and...
más de 10 años hace | 0 respuestas | 0
0
respuestasPregunta
what is the difference between a histogram and pdf.
i am trying to understand the difference between pdf and histogram.i want to use an algorithm to plot a bernoulli from a pdf usi...
más de 10 años hace | 1 respuesta | 0
1
respuestaPregunta
why is my results coiming out as a single 0 while using matlab
R = rand (10,1)% generate a sample in Unif(0,1) P = 0.5 N = 10 if R < P fprintf = 1 else fprintf = 0 end
más de 10 años hace | 1 respuesta | 0
