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!