New to matlab, need help with problem..
정보
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
이전 댓글 표시
I am suppose to create a loop to calculate the sum 1+2+3+...+300. Display the total after each 50 (i.e. 50, 100, 150 …) I know I need an if statement in my for loop but have no idea what to do. This is what I have thus far..
Total = 0;
for z = 1:299
Total = Total + z*(z+1)
if z(50 == 0)
댓글 수: 0
답변 (2개)
James Tursa
2017년 12월 11일
편집: James Tursa
2017년 12월 11일
Good start. Thank you for posting your code. Some help:
- Have the top value of your loop be 300, not 299
- Have the Total simply add in z, not z*(z+1)
- Use the mod function in your if-test. E.g.,
if mod(z,50)==0
댓글 수: 0
Mohammed Safwat
2017년 12월 11일
편집: James Tursa
2017년 12월 11일
댓글 수: 1
James Tursa
2017년 12월 11일
Put a semi-colon at the end of a line to suppress the screen output. E.g.,
Total = Total + z;
이 질문은 마감되었습니다.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!