Adding a row to an unknown matrix - the row consists of the mean value of the columns of the unknown matrix.

5 次查看(过去 30 天)
Add a row to the bottom of A that consists of the mean of each column of A and assign the resulting matrix to B.
I am trying to add a row into an unknown matrix - the row has to consist of the mean of the columns of the unknown matrix.
Does anyone have ideas?
Thank you,
Gabe

采纳的回答

James Tursa
James Tursa 2019-11-25
Hints:
doc mean
The last row of the matrix A is A(end,:). Then ask yourself: What would be the indexing of one row beyond "end"?
  1 个评论
Gabriel Berkhoudt
Gabriel Berkhoudt 2019-11-27
James,
thanks for your response. It helped point me in the right direction.
I worked out, "A(end+1,:)=mean(A)" which, is perfect its what I need..EXCEPT I need the resulting matrix from the (A) and, A(end+1(mean(A)), to be under the variable B.
I'm not sure how I can do that aside from saying B=ans.
I have tried many different variations, and looked everywhere and I'm getting nothing.
Do you have any suggestions?

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by