need help in to write a matlab script
3 次查看(过去 30 天)
显示 更早的评论
how do you write a matlab script to calculate the Sum for the expression?
0 个评论
采纳的回答
Sabarinathan Vadivelu
2012-12-29
n = 10; % assuming it to be 10
x = 0;
for i = 1 : n
x = ((1/i) + (1/(i+2)*(i+3))) + x;
end
0 个评论
更多回答(1 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!