You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
434 B
Matlab
15 lines
434 B
Matlab
function plotDataPoints(X, idx, K)
|
|
%PLOTDATAPOINTS plots data points in X, coloring them so that those with the same
|
|
%index assignments in idx have the same color
|
|
% PLOTDATAPOINTS(X, idx, K) plots data points in X, coloring them so that those
|
|
% with the same index assignments in idx have the same color
|
|
|
|
% Create palette
|
|
palette = hsv(K + 1);
|
|
colors = palette(idx, :);
|
|
|
|
% Plot the data
|
|
scatter(X(:,1), X(:,2), 15, colors);
|
|
|
|
end
|