MATLAB: How to use subplot to plot three signals in the same figure

MATLABplotsubplot

signal A
signal B
signal C

Best Answer

Same figure window use subplot?
subplot(311),plot(signal A)
subplot(312),plot(signal B)
subplot(313),plot(signal C)