I want to give a combined title to my subplots, instead of titling each plot individually. e.g;
for pl=1:4
subplot(2,2,pl)
title('Test')
end
If I use this:
figure
title('Test')
for pl=1:4
subplot(2,2,pl)
end
I don't get any title.