필터 지우기
필터 지우기

How to read multiple cells in excel?

조회 수: 6 (최근 30일)
Mary Ng
Mary Ng 2015년 12월 5일
댓글: Walter Roberson 2015년 12월 5일
I would like to read multiple cells in excel, for example:
I want the average of the values between A1:A50 A60:100. (So ideally 90 cells in total)
I've tried;
x = xlsread('filename','A1:A50, A60:90'); (THIS AND THE THE ONE BELOW, GIVES ME TWO DIFFERENT ANSWERS. SO CONFUSED.)
x = xlsread('filename','A60:A90, A1:A50); (DIFFERENT ANSWER TO THE ONE ABOVE, WHY??)
x = xlsread('filename','A60:A50'); (100 is the last cell and this gave me a completely different answer.)
And sooo many more.
I know it's not correct because I've already calculated the average manually, and it does not match the one above.
I've attached photo to show what I want. The 183.564 is the sum of all the variables. But when I tried to do it on matlab, it doesn't give me the answer I want. Only on excel it seems to work.
Sorry if I'm not clear, and thank you!
  댓글 수: 1
Walter Roberson
Walter Roberson 2015년 12월 5일
The photo did not get attached.

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

답변 (1개)

Walter Roberson
Walter Roberson 2015년 12월 5일
  댓글 수: 2
Mary Ng
Mary Ng 2015년 12월 5일
편집: Walter Roberson 2015년 12월 5일
So.. something like this?
x1 = xlsread('filename','A1:A50');
x2 = xlsread('filename', 'A60:100');
x = (x1 + x2);
I've tried and it still isn't giving me what I want.. :/
sorry, I've attached the photo now.
Walter Roberson
Walter Roberson 2015년 12월 5일
x = [x1; x2];
mean(x)

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

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by