MATLAB: Maximum of a row in a matrix

maximum row

I want the maximum of a specific row in a matrix

Best Answer

Use max, and some indexing if needed:
A = [...]; % some matrix
N = 3; % the row that you want
max(A(N,:))