MATLAB: Labelling several axes with the same name

figurexlabel

I have a figure with four subplots. I would like the x-axis to be labelled as "position" for all of them. How can I do this with one line of code?

Best Answer

Building on Jan's answer ...
H(1) = subplot(1,2,1);
H(2) = subplot(1,2,2);
Htemp = get(H, 'XLabel');
set([Htemp{:}], 'String', 'position');