MATLAB: How to set two a vector greater than a variable and lower than another variable into a new matrix

greater than lower than

clc,clear,close all
aftbod = 13;
fwdbod = 138;
midbod = 78
for subit=1:10
MutCol(subit,:,:)=randi([13 138]);
if aftbod < MutCol(subit,1) & midbod > MutCol(subit,1)
aftref = MutCol;
elseif midbod < MutCol(subit,1) & fwdbod > MutCol(subit,1)
fwdref = MutCol;
end
end
this is my code, I'm trying to store all the variables that fit the requirement of being less than midbod and more than aftbod to be stored in aftref and the variables that fit the requirement of being less than fwdbod and more than midbod in fwdref

Best Answer

MutCol=randi([aftbod, fwdbod],10,1);
aftref=MutCol( aftbod<MutCol & MutCol<midbod);
fwdref=MutCol( midbod<MutCol & MutCol<fwdbod);