29 lines
1.0 KiB
Matlab
29 lines
1.0 KiB
Matlab
function plotData(x, y)
|
|
%PLOTDATA Plots the data points x and y into a new figure
|
|
% PLOTDATA(x,y) plots the data points and gives the figure axes labels of
|
|
% population and profit.
|
|
|
|
figure; % open a new figure window
|
|
|
|
% ====================== YOUR CODE HERE ======================
|
|
% Instructions: Plot the training data into a figure using the
|
|
% "figure" and "plot" commands. Set the axes labels using
|
|
% the "xlabel" and "ylabel" commands. Assume the
|
|
% population and revenue data have been passed in
|
|
% as the x and y arguments of this function.
|
|
%
|
|
% Hint: You can use the 'rx' option with plot to have the markers
|
|
% appear as red crosses. Furthermore, you can make the
|
|
% markers larger by using plot(..., 'rx', 'MarkerSize', 10);
|
|
|
|
plot(x, y, 'rx', 'markersize', 10); # Plot the data
|
|
ylabel('Profit in $10,000s'); # Label y-axis
|
|
xlabel('Population of City in 10,000s'); # Label x-axis
|
|
|
|
|
|
|
|
|
|
% ============================================================
|
|
|
|
end
|