Info

This question is closed. Reopen it to edit or answer.

Numerical calculation error using eval

1 view (last 30 days)
Mike
Mike on 6 Mar 2012
Closed: MATLAB Answer Bot on 20 Aug 2021
I'm going through a calculation to convert RH to dewpoint, and for the first step I need to get the saturation vapor pressure, es.
es=eval(['6.11*exp(((Lv*Mw)/R)*((1/273)-(1./temp_ruc_',eventlist(z,:),')));']);
The error occurs within the exponent term...
I evaluated (Lv*Mw/R) and ((1/273)-(1./temp_ruc_',eventlist(z,:),')) separately, and both work.
I also tried the whole term using a sample temperature value (290 K), and I got the right answer:
((Lv*Mw)/R)*((1/273)-(1/290)) = 1.1632e+03
Given the range of temp values, all the answers should be in this range... But when I go through the calculation in full, as shown below, I get values ranging from -6 to +2...
eval(['((Lv*Mw)/R)*((1/273)-(1./temp_ruc_',eventlist(z,:),'))'])
What could be causing this error?
  1 Comment
Jan
Jan on 7 Mar 2012
Avoid EVAL. It provokes errors and problems - obviously. And there is always a better solution.

Answers (1)

Walter Roberson
Walter Roberson on 6 Mar 2012

Community Treasure Hunt

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

Start Hunting!