SCATTERHIST で SUBPLOT を使用する機能は提供されていません。
回避策として、UIPANEL の POSITION オプションを使用して SCATTERPLOT の軸を指定した場所に置いてください。
load carsmall
a = scatterhist(Weight, MPG);
% subplot(2,2,4) の箇所、2x2分割での右下にグラフを表示
u = uipanel('position',[.5 0 .5 .5])
set(a,'parent',u)
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!