MATLAB: How to add newline to x label of a plot

plot

How do I add a new-line to the x label of a plot ? Like i want it to be
Label A \newline
Label B

Best Answer

plot(1:10)
xlabel({'hello';'there'})