Cursera: Machine Learning Exercises 1 Accomplished.

This commit is contained in:
2015-02-15 10:59:36 +04:00
parent 0f638a71f4
commit 8bd0771809
16 changed files with 1409 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
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.
% ====================== 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);
figure; % open a new figure window
% ============================================================
end