homework ,matrix and avg
이전 댓글 표시
hi,my ex is to check the first diag and the secondary if they even ,and check the avg of those who are even.this is my work until now,i have problems with syntax.anyone can help me finish it?
n=randi(6);
a=randi(100,n,n);
b=eye(2,length(a));
b(1,:)=diag(a);
b(2,:)=diag(rot(a));
for (i=1:1:length(b))
{
if((mod(b(i),2)==0));
{ j++;
x=x+b(i);
}
else i++;
}
avg=x/j;
답변 (1개)
Image Analyst
2017년 9월 17일
0 개 추천
Step 1 is to get rid of any { and replace any } with the word "end". Then replace i++ with i=i+1 and j++ with j=j+1. You will also need to initialize x before the for loop. Start with that and see how much further you can go.
댓글 수: 3
yuval ohayon
2017년 9월 17일
편집: Walter Roberson
2017년 9월 17일
Star Strider
2017년 9월 17일
The complex value for ‘avg’ is the result of ‘i’ and ‘j’ being defined in MATLAB as imaginary operators equal to sqrt(-1) unless they are previously defined as being real numbers.
To illustrate:
j=j+1
j =
1 + 1i
Image Analyst
2017년 9월 17일
b is a 2 by 6 array. So why are you passing only one index into it instead of 2?
DO NOT assign i to something inside the loop. It's bad practice. The poorly-named "i" will be assigned automatically by the "for" statement and you should not override that, or else trouble and confusion will ensue.
Do not call your variable "j" - another poor choice as Star said. Call your variables descriptive names like "numberOfEvens" or something. Certainly don't call them i or j or any name of a built in function like "sum"!
카테고리
도움말 센터 및 File Exchange에서 MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!