How to calculate absolute mean across numerical array

2 次查看(过去 30 天)
Hi all,
I have an array of 100x24 double. I want to calculate absolute mean so the output is 100x1 double. Can you help please?
mean_array = mean((abs(P_acc_y, 2)));
gives me
Error using abs
Too many input arguments.

采纳的回答

Matt J
Matt J 2022-3-7
mean_array = mean( abs(P_acc_y), 2);

更多回答(1 个)

Matt J
Matt J 2022-3-7
mean_array = vecnorm(P_acc_y, 1, 2)/24;

类别

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

标签

Community Treasure Hunt

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

Start Hunting!

Translated by