Plot[2x, {x,0,4}]
Plot[x^2, {x,10,12}]
How do I merge these two graphs into one graph without the range {4,10}?
Depending on your needs.
Show[
Plot[2 x, {x, 0, 4}],
Plot[x^2, {x, 0, 12}]
]
OR
Plot[{2 x, x^2}, {x, 0, 4}]
Show[Plot[2 x, {x, 0, 4}], Plot[x^2, {x, 10, 12}], PlotRange -> {{0, 12}, Automatic}] is not what you want?
– J. M.'s missing motivation
Oct 15 '15 at 11:01
Show[]? – J. M.'s missing motivation Oct 14 '15 at 17:32