필터 지우기
필터 지우기

How can I calculate average of two values using a for loop

조회 수: 23 (최근 30일)
collegestudent
collegestudent 2020년 4월 6일
댓글: collegestudent 2020년 4월 6일
I have to calculate the average of two numbers in different columns but are in the same row. This then has to be repeated for the other 20 rows of numbers I have finding the average between the two numbers.
for ii = 1:20
PTS = {539 1220 996 1485 1938 2019 2461 1557 1819 2832 2430 2323 2201 1970 2078 1616 2133 83 782 1161}
G = {71 79 50 66 68 80 82 65 66 80 77 82 82 73 82 58 78 6 35 66}
ave = PTS./G
end
  댓글 수: 3
collegestudent
collegestudent 2020년 4월 6일
Each number in the PTS cell array corresponds to the number in G so 539 divided by 71 to get the average and so on for the rest of the numbers
KALYAN ACHARJYA
KALYAN ACHARJYA 2020년 4월 6일
Is the question complete?

댓글을 달려면 로그인하십시오.

채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2020년 4월 6일
편집: KALYAN ACHARJYA 2020년 4월 6일
Why you are dealing with cell array, you cal do same with array, By the way ave = PTS./G is not the average
PTS = {539 1220 996 1485 1938 2019 2461 1557 1819 2832 2430 2323 2201 1970 2078 1616 2133 83 782 1161}
G = {71 79 50 66 68 80 82 65 66 80 77 82 82 73 82 58 78 6 35 66}
for ii=1:length(PTS)
ave{ii} = PTS{ii}/G{ii}
end
Array
PTS =[539 1220 996 1485 1938 2019 2461 1557 1819 2832 2430 2323 2201 1970 2078 1616 2133 83 782 1161]
G = [71 79 50 66 68 80 82 65 66 80 77 82 82 73 82 58 78 6 35 66]
for ii=1:length(PTS)
ave(ii)= PTS(ii)/G(ii})
end
  댓글 수: 1
collegestudent
collegestudent 2020년 4월 6일
I am trying to calculate the average points per season using the equation average = points / games

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Ameer Hamza
Ameer Hamza 2020년 4월 6일
This is a version without a for loop
ave = [PTS{:}]./[G{:}];

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by