MATLAB: Could anyone help me how to plot the graph for more than one variable.

graph

code:
x=[0.1 1 2 3 4]
y=[0.05 0.06 0.06 0.06 0.06 ]
z=[0.14 0.18 0.18 0.18 0.18]
plot(x,y,'-*')
plot(x,z,'-^')
I want to plot the above code in a single graph.
when i run the code i can see only one line on the graph.
Could anyone please help me how to get both lines on the graph.

Best Answer

x=[0.1 1 2 3 4]
y=[0.05 0.06 0.06 0.06 0.06 ]
z=[0.14 0.18 0.18 0.18 0.18]
plot(x,y,'-*');
hold on;
plot(x,z,'-^')