Integration fo function A(c) from -inf to +inf
조회 수: 1 (최근 30일)
이전 댓글 표시
A(c)= sqrt(m/(2*pi*k*T1))*exp(-m/(2*k*T1)*(c-c_bar1)^2)
where, m , k, T1, c_bar1 are known.
채택된 답변
Alex Mcaulley
2019년 10월 31일
편집: Alex Mcaulley
2019년 10월 31일
A = @(c) sqrt(m/(2*pi*k*T1))*exp(-m/(2*k*T1)*(c-c_bar1)^2)
q = integral(A,-inf,inf)
댓글 수: 3
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!