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
Easiest solution:
plot([0,0],[0.0], xData, yData);
This creates an invisible line between the points [0,0] to [0,0] and since Matlab wants to include these points it will shows the axis.