Help with For End loop
6 ビュー (過去 30 日間)
古いコメントを表示
Use a For-end loop in a script file to calculate the sum of the first n terms of the series:
Summation sign on the top n bottom k=1 : ((-1)^k * k^2 +5k)/3^k Show the script file and the two results of n = 10 and n = 20.
WHAT IS THIS I DONT UNDERSTAND LOOPS HELP PLEASE IM BEGGING!!!. x.x
0 件のコメント
採用された回答
Image Analyst
2014 年 11 月 1 日
n=10;
theSum = 0;
for k = 1 : n
theSum =
OK, that should be enough hint for you to finish your homework.
2 件のコメント
Image Analyst
2014 年 11 月 1 日
I didn't know this was a duplicate question. Then just use the answer Harry gave you in http://www.mathworks.com/matlabcentral/answers/160855-help-with-homework-please-loops-are-hard He did your entire homework question for you.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!