Integration problem
이전 댓글 표시
I have the following equation
R(V) = int{ (1 - (1-P(v))^n) * F(v)} dV where:
int ...> integral simbol from -inf to V, dV....> differential of V, P(V) = int {N(uf,sigma_f)} ...> accumulative normal distribution F(V) = N(uo,sigma_o) ...> normal distribution how can I solve it in matlab?
답변 (1개)
Andrew Newell
2012년 2월 13일
0 개 추천
You can calculate integrals with limits of -Inf or Inf using quadgk. See Integration for how to use it. Normal distributions are implemented using normpdf and cumulative normal distributions by normcdf. To create the integrands, you'll need to use anonymous functions.
카테고리
도움말 센터 및 File Exchange에서 Exponential Distribution에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!