anonymous-submission-acl2025's picture
add 42
2a8276b
function v = wfunc(c, s, ind2, EV, p, type)
[~, aprime] = savings(c, s, p, type);
if strcmp(type, 'h')
v = c.^(1 - p.sigma)/(1 - p.sigma) + p.alpha*s(:,4).^(1 - p.sigma)/(1 - p.sigma) - ...
p.phi^(1 + 1/p.gamma)/(1 + p.gamma)*c.^(-p.sigma*(1 + 1/p.gamma)) + p.beta*EV(aprime, ind2);
else
v = (1 + p.alpha^(1/p.sigma)*p.R^(1 - 1/p.sigma))*c.^(1 - p.sigma)/(1 - p.sigma) - ...
p.phi^(1 + 1/p.gamma)/(1 + p.gamma)*c.^(-p.sigma*(1 + 1/p.gamma)) + p.beta*EV(aprime, ind2);
end