Integral of PDF function

24 vues (au cours des 30 derniers jours)
rnd rnd
rnd rnd le 10 Fév 2020
Commenté : Walter Roberson le 10 Fév 2020
Hi,
So as the title says I want to evaluate the integral of PDF function but also with other expressions in the integral, Also my input x for the PDF function is a division of two variables.
Need help!
using : MATLAB R2019a
Thank you.
int.jpeg
See picture.

Réponse acceptée

Walter Roberson
Walter Roberson le 10 Fév 2020
syms R t w
PDF = @(x) exp(-x.^2/2) / sqrt(sym(2)*sym(pi));
result = int(PDF(t/R) / R * (1-t/w), t, 0, w)
  2 commentaires
rnd rnd
rnd rnd le 10 Fév 2020
Thank you, it seems I am missing the Symbolic Math Toolbox.
Can you help me with workarround solution?
Walter Roberson
Walter Roberson le 10 Fév 2020
R = randn;
w = 10 * rand;
PDF = @(x) exp(-x.^2/2) ./ sqrt(2*pi);
fun = @(t)PDF(t/R)./R.*(1-t./w);
result = integral(fun, 0, w)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Symbolic Math Toolbox dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by