MATLAB allows you to add title, labels along the x-axis and y-axis, grid lines and also to adjust the axes to spruce up the graph. MATLAB draws a smoother graph − Adding Title, Labels, Grid Lines and Scaling on the Graph
Please note that as we decrease the increment, the graph becomes smoother.Ĭhange the code file a little, reduce the increment to 5 − In this example, we will draw two graphs with the same function, but in second time, we will reduce the value of increment. Let us take one more example to plot the function y = x 2. When you run the file, MATLAB displays the following plot − Let us plot the simple function y = x for the range of values for x from 0 to 100, with an increment of 5.Ĭreate a script file and type the following code − To plot the graph of a function, you need to take the following steps −ĭefine x, by specifying the range of values for the variable x, for which the function is to be plottedįollowing example would demonstrate the concept.