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
This should work in Matlab:
set(gca, 'XAxisLocation', 'origin')
Options are: bottom, top, origin.
For Y.axis:
YAxisLocation; left, right, origin