Integral of PDF function
조회 수: 5 (최근 30일)
이전 댓글 표시
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.
See picture.
댓글 수: 0
채택된 답변
Walter Roberson
2020년 2월 10일
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
Walter Roberson
2020년 2월 10일
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)
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Calculus에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!