plotData.m 760 B

123456789101112131415161718192021222324252627282930313233
  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. % Create New Figure
  6. figure; hold on;
  7. % ====================== YOUR CODE HERE ======================
  8. % Instructions: Plot the positive and negative examples on a
  9. % 2D plot, using the option 'k+' for the positive
  10. % examples and 'ko' for the negative examples.
  11. %
  12. one = find(y == 1);
  13. zero = find(y == 0);
  14. scatter(X(one,1), X(one,2), 'b', '+', 'filled');
  15. scatter(X(zero,1), X(zero,2), 'r', 'o', 'filled');
  16. % =========================================================================
  17. hold off;
  18. end