Peobelms about matrix dimensions

function F=activation
T=100:100:2500;
A=quad(@(E)2/sqrt(pi)*T.^(-1.5).*(E.^0.5).*exp(-1*E./T.).,0,3500);
F=1-A;
end
It won't work, and I'm so confused about the matrix dimensions.

Réponses (1)

James Tursa
James Tursa le 9 Nov 2020

0 votes

Take a look at this term:
exp(-1*E./T.).
Looks like you have too many periods in this part of the calculation. Try this
exp(-1*E./T)

Catégories

Community Treasure Hunt

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

Start Hunting!

Translated by