integration of number array with variable

조회 수: 1 (최근 30일)
Abu Nazir
Abu Nazir 2022년 2월 23일
답변: Torsten 2022년 2월 23일
T(ez) is a number array. is there anyone who can help me to do this integration?
  댓글 수: 2
Torsten
Torsten 2022년 2월 23일
Use trapz.
Abu Nazir
Abu Nazir 2022년 2월 23일
I do have calculated 600 value of T(Ez) corresponding to Ez number array. EF1, EC1, EF2 and EC2 600 numerical value which I have.
I want to vary T - temperature and calculate the J.

댓글을 달려면 로그인하십시오.

답변 (1개)

Torsten
Torsten 2022년 2월 23일
Ez=...;
TEz = ...;
q=...;
mstar=...;
h=...;
kB=...;
T=...;
J = zeros(size(T));
for i = 1:numel(T)
Y = TEz.*log((1+exp((EF1-Ez-EC1)/(kB*T(i))))./(1+exp((EF2-Ez-EC2)/(kB*T(i)))));
J(i) = q*mstar/(2*pi^2*h^3)*kB*T(i)*trapz(Ez,Y);
end
plot(T,J)

카테고리

Help CenterFile Exchange에서 Numerical Integration and Differentiation에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by