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.
回答 (1 件)
James Tursa
2020 年 11 月 9 日
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)
カテゴリ
ヘルプ センター および File Exchange で Resizing and Reshaping Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!