I am drawing a graph using the plot() function, but by default it doesn\'t show the axes.
How do we enable showing the axes at x=0 and y=0 on th
@Martijn your order of function calls is slightly off. Try this instead:
x=-3:0.1:3; y = x.^3; plot(x,y), hold on plot([-3 3], [0 0], 'k:') hold off