Element by Element Multiplication?

3 views (last 30 days)
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?

Accepted Answer

Walter Roberson
Walter Roberson on 5 Apr 2013
Use ./ instead of /

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!