IN MATLAB A welldefined plot includes a title X and Yaxis la
IN MATLAB:
A well-defined plot includes: a title. X- and Y-axis labels. different looking data points if different data sets are on the same plot. all of the above. When plotting a polynomial, you must define x values and calculate the corresponding y values using the polynomial. If x = 0:2:10, how would you make the plot more smooth? change x to x=0:2:20 change x to x=0:.2:10 change x to x=-10:5:10 You cannot change the polynomial, therefore you cannot make it more smooth.Solution
A well-defined plot includes:
ans)4 all of the above that means a title,x-and y-axis labels,different looking data points if different data sets are on the same plot.
xlabel(\'x axis\');
ylabel(\'y axis\');
title(\'about plot\');
above commands are used while creating plots in matlab
F)we are drawing polynomial function for x=0:2:10 means x values in the range of 0,10 with increment 2
if we decrement that value we make the plot more smooth.so,option 2 is correct change x to x=0:.2:10
