フィルターのクリア

I want my solution as a Vector

2 ビュー (過去 30 日間)
Patrick Brandt
Patrick Brandt 2021 年 4 月 23 日
コメント済み: Patrick Brandt 2021 年 4 月 23 日
Hi guys,
I wrote the following code to calculate the center of mass in the in the X direction of every single layer of a 58x22x122 Matrix. The solutions are correct, but I want the answers in form of a 1x122 Vector, do you have any idea how to realize it?
R=0;
for z=1:122
for x=1:22
for y=1:58
R=R+A(y,x,z)*x;
end
end
Q=A(:,:,z);
N=sum(Q,[1,2]);
X=R/N
R=0;
end
I hope anyone can help me.

採用された回答

Daniel Pollard
Daniel Pollard 2021 年 4 月 23 日
Does this work?
X(z) = R/N;
instead of
X = R/N
  1 件のコメント
Patrick Brandt
Patrick Brandt 2021 年 4 月 23 日
Yeah thank You!!!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by