I am trying to figure out why I am getting all zeros back in the code below.
a = 7.0e16;
e = 100000;
r = 8.3140;
t = 253:2:325;
k = a.*exp(-e./t.*r);
k
returns as 1x37 array consisting of only zeros.
Is it because my numbers are too large or too small?