MATLAB: Select specific cells from a cell array and create a seperate vector

cell arrayvector

Hi everyone,
I have the following cell array
Max_Col_Cell(9,10,15)
I want to isolate every combination of the first two elements (9,10) for all the 15 values of the third element and create new vectors having one column with 15 rows.
For example create a vector having (1,1,:). Another vector having (2,1,:) etc….
I am trying to write a for loop but its not working.
How can i do this?
Ilias

Best Answer

Does your cell array have only numeric values in it?
If yes, then
maxVal = max(cell2num(C),[],3)
where C is your cell array.