Problem with / when I run the code.
k= k0*e^(-Q/RT)
k = k0 * exp((-Q)/(R*T))

답변 (1개)

Torsten
Torsten 2022년 12월 8일

0 개 추천

If T is an array of multiple temperatures, you have to use elementwise division:
k = k0 * exp((-Q) ./ (R*T))
instead of
k = k0 * exp((-Q)/(R*T))

카테고리

도움말 센터File Exchange에서 Trigonometry에 대해 자세히 알아보기

질문:

2022년 12월 8일

답변:

2022년 12월 8일

Community Treasure Hunt

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

Start Hunting!

Translated by