using simpson 3/8 rule
조회 수: 2 (최근 30일)
이전 댓글 표시
F(x)= x*((1/1+exp(x-5))-(1/1+exp(3-x)))*(1/((E-x)^2+2))
where x limit from 0 to 5 nm
and E vary from 0 to 3
can anyone tell me matlab code for this to solve this integration using simpson 3/8 rule
댓글 수: 0
답변 (1개)
Birdman
2018년 1월 18일
By downloading the file from the following link( simpson.m):
and type
x=0:0.1:5;%you can change the increment
E=0:3/(numel(x)-1):3;%has to be same length with x
y= x*((1/1+exp(x-5))-(1/1+exp(3-x)))*(1/((E-x)^2+2));
simpson(x,y,[],'3/8')
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Numerical Integration and Differential Equations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!