MATLAB: Extracting row elements from different columns using an index

indexindexingmathematicsMATLABmatrixmatrix manipulation

I have two 18×4 matrices of various integer sized data (say A and B). I am trying to collapse the second matrix (B) into an 18×1 array using an index created by the first matrix (A), the index which is that of the largest integers in each row of the first matrix (A).
I've attempted to do this by using an [~,idx] = max(A,[],2), but am having some trouble extracting the data out of B using the index. Is there a way to do that, or an even better approach?
I am attempting to use the logic I find here to apply to two 5D matrices collapsed along the 5th dimension by minimum value.
Thank you.

Best Answer

A=rand(18,4);
B=rand(18,4);
[Ma,indA]=max(A,[],2);
indB=sub2ind(size(A),(1:size(A,1))',indA);
Sb=B(indB)