MATLAB: How to resize plot axis by removing scientific notation

axisplotplottingscientific notation

I am trying to plot a beam bending simulation,however, since the dimensions are small, it shows y-axis values as an exponent of of 10 which ruins the realistic visual of the beam.
This is how it plots right now, as you can see it converts the y-axis values to scientific notation
I want the graph be like: So, How can I fix this problem? Thanks,

Best Answer

ylim([0, 10e-3])