How can I calculate the mean of a line and put it into a new vector?

조회 수: 1 (최근 30일)
Max Behr
Max Behr 2020년 4월 22일
댓글: Max Behr 2020년 4월 22일
Hello,
asdasd
I got a matrix like this:
a(4,3)
a=
1 1 3
2 2 4
3 2 3
4 1 4
Now I would like to create another vector with the means of each line:
b(4,1)
b=
1,67
2,67
2,67
3
How can I do this with Matlab?
I tried this code but it only takes the first line...
b=mean(a)
Thanks for your help!

답변 (1개)

Steven Lord
Steven Lord 2020년 4월 22일
Look at the description of the dim input argument in the documentation for the mean function. There's also a relevant example on that documentation page.
doc mean

카테고리

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

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by