answers = 1:16;

i = 1;
while i <= length(answers)
	answers(i) = damped(i, 10);
	i = i + 1;
end
plot(abs(answers));
