Community Profile

photo

oshomah kanoba


Active since 2015

Statistics

  • Thankful Level 1

View badges

Content Feed

View by

Question


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 ...

9 years ago | 0 answers | 0

0

answers

Question


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...

9 years ago | 0 answers | 0

0

answers

Question


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

9 years ago | 1 answer | 0

1

answer

Question


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...

9 years ago | 0 answers | 0

0

answers

Question


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,...

9 years ago | 0 answers | 0

0

answers

Question


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;...

9 years ago | 0 answers | 0

0

answers

Question


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) ...

9 years ago | 1 answer | 0

1

answer

Question


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

9 years ago | 1 answer | 0

1

answer

Question


how to plot the cdf of a bernoulli using matlab
how do i plot the cdf of a bernoulli using matlab

9 years ago | 1 answer | 0

1

answer

Question


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...

9 years ago | 0 answers | 0

0

answers

Question


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...

9 years ago | 1 answer | 0

1

answer

Question


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

9 years ago | 1 answer | 0

1

answer