필터 지우기
필터 지우기

relative calculation from a column

조회 수: 2 (최근 30일)
eric capnu
eric capnu 2017년 12월 13일
답변: James Knowles 2017년 12월 18일
hi guys. i have the following array A
1 2
--- ---
2
3
10
1
7
8
2
i want create a column 2, which is made from the Excel formula:
=RC[-1]/average(RC[-1]:R[-3]C[-1])
so the result would be
1 2
--- ---
2
3
10 2
1 0.21
7 1.16
8 1.5
2 0.35
i want to do it from matlab. But i don't know where do i start...
  댓글 수: 1
Jan
Jan 2017년 12월 13일
Start with posting some Matlab code, which creates the existing inputs. Currently the readers cannot guess, if you made this table like layout for clarity, or if the data are really a table object.
Then please explain the meaning of the "RC", "R" and "C" as well as "[-1]" notation. Of course, some Excel profis will recognize what you want, but this is a Matlab forum.

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

답변 (1개)

James Knowles
James Knowles 2017년 12월 18일
x1 = [2;3;10;1;7;8;2] %input column vector
x2 = 'manipulation you want to perform as a function of x1'

카테고리

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