Hi Aldan,
the code is running through all the values, but it's not saving any of them. You need to do something like
m = 220;
Tsave = zeros(1,m);
vapor_usave = zeros(1,m);
liquid_usave = zeros(1,m);
for n = 1:m
T = XSteam('Tsat_p',n);
Tsave(n) = T;
vapor_usave(n) = XSteam('uV_T',T);
liquid_usave(n) = XSteam('uL_T',T);
end
which results in three 1x220 vectors of values.
