MATLAB: Detect row and column

digital image processingimage processingImage Processing Toolbox

how to know value for minimum and maximum of row and column

Best Answer

X = randn(10,5);
min(X,[],1)
min(X,[],2)
max(X,[],1)
max(X,[],2)
Related Question