Use ./ instead of /
Element by Element Multiplication?
5 次查看(过去 30 天)
显示 更早的评论
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?
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!