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)
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!