Borrar filtros
Borrar filtros

Restrict x values while plotting the pdf function

1 visualización (últimos 30 días)
Dhruwal Dilipbhai Bhimani
Dhruwal Dilipbhai Bhimani el 29 de Oct. de 2021
Respondida: KSSV el 29 de Oct. de 2021
mu2=3;
sigma2=2;
X2=normrnd(mu2,sigma2,[200,1]);
sorted_X2=sort(X2);
Y2=normpdf(sorted_X2,mu2,sigma2);
figure
plot(sorted_X2,Y2)
I am planning to plot the pdf function like attached figure where x values are random and I need not to include the negative x values as for the current problem thickness cannot be taken negative.

Respuesta aceptada

KSSV
KSSV el 29 de Oct. de 2021
mu2=3;
sigma2=2;
X2=normrnd(mu2,sigma2,[200,1]);
sorted_X2=sort(X2);
Y2=normpdf(sorted_X2,mu2,sigma2);
figure
hold on
plot(sorted_X2,Y2,'r')
sorted_X2(sorted_X2<0) = 0 ;
plot(sorted_X2,Y2,'b')

Más respuestas (0)

Categorías

Más información sobre Graphics Object Identification en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by