Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hackassin
GitHub Repository: hackassin/Coursera-Machine-Learning
Path: blob/master/Week 3/Programming Assignment - 2/machine-learning-ex2/ex2/plotData.m
863 views
1
function plotData(X, y)
2
%PLOTDATA Plots the data points X and y into a new figure
3
% PLOTDATA(x,y) plots the data points with + for the positive examples
4
% and o for the negative examples. X is assumed to be a Mx2 matrix.
5
6
% Create New Figure
7
figure; hold on;
8
9
% ====================== YOUR CODE HERE ======================
10
% Instructions: Plot the positive and negative examples on a
11
% 2D plot, using the option 'k+' for the positive
12
% examples and 'ko' for the negative examples.
13
%
14
15
pos = find(y==1); neg = find(y==0);
16
plot(X(pos, 1), X(pos, 2), 'k+','LineWidth', 2, 'MarkerSize', 7);
17
plot(X(neg, 1), X(neg, 2), 'ko', 'MarkerFaceColor', 'g', 'MarkerSize', 7);
18
19
% =========================================================================
20
21
hold off;
22
23
end
24
25