MATLAB: Element by Element Multiplication

arrayelement

Currently I have this.
x = [1, .1, .01, .001, .0001, .00001, .000001, .0000001, .00000001, .000000001, .0000000001, .00000000001];
f = 0;
e = 2.71828;
for i = 1:length(x);
f = (e.^(x).*sin(x)/x).^2
end
Now I want it to display f for every single value of X, not just the end result. What am I doing wrong?

Best Answer

Use ./ instead of /