- When incrementing by one, you can simply do i=0:2, the increment value is only necessary if it is something other than 1
- You can simplify your code to do all the calculations on one line
- It is simpler to just add to S every loop iteration.
Folks, please let me know how to complete the sum of products in the "for loop" as shown below in order to get the correct answer. Thank you. HDaniel
조회 수: 1 (최근 30일)
이전 댓글 표시
clear all; % S=2i*3j; S1=0; S2=0; for i=0:1:2; for j=1:1:3; S1=2*i; S2=3*j; S=S1*S2; end end y=Sum(S)
댓글 수: 0
채택된 답변
aborghes
2017년 8월 9일
편집: aborghes
2017년 8월 9일
Hi Hani,
A few tips first:
Doing as i suggest, the code looks as follows:
clear all;
% S=2i*3j;
S = 0;
for i=0:2
for j=1:3
S= S + 2*i * 3*j;
end
end
y=S
추가 답변 (1개)
참고 항목
카테고리
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!