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 件)
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!