MATLAB: Max Value of Certain Row in Cell Array

arraymaxmax valuerow

I have a 15×15 array and I would like the max value from the 4th row, how would I go about doing this?

Best Answer

a = cell2mat(yourcellarray);
out = max(a(4,:));