How do you average vectors in a cell array?

1 view (last 30 days)
A cell array of vectors of type double, say:
1 x 10000
1 x 10000
1 x 10000
How do you average the values into one array 1 x 10000?

Accepted Answer

Voss
Voss on 3 May 2022
If they're really all row vectors of the same length like that, then:
mean(vertcat(C{:}))
where C is the cell array.

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!