MatrixBerryCore
subreffrontdim.m
Go to the documentation of this file.
1 function resArray=subreffrontdim(inpArray,curInd)
2 resArray=inpArray(curInd,:);
3 newSizeVec=size(inpArray);
4 newSizeVec(1)=size(resArray,1);
5 resArray=reshape(inpArray(curInd,:),newSizeVec);
function subreffrontdim(in inpArray, in curInd)