I am using the plot
function of octave to plot a graph. The code is as below -
plot([1; 2; 3; 4], [1; 2; 3; 4]);
As you can see, the plot is using a scale of 1.5 on both x and y axes. I want to change the scale to 1 on both axes. How can I do this?