Skip to content

Instantly share code, notes, and snippets.

@maskaravivek
Created May 23, 2020 00:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maskaravivek/317371eef59600deee7a454393e6115a to your computer and use it in GitHub Desktop.
Save maskaravivek/317371eef59600deee7a454393e6115a to your computer and use it in GitHub Desktop.
epsilon = 2.08;
minpts = 2;
labels = dbscan(X, epsilon, minpts);
gscatter(X(:,1),X(:,2),labels);
title('epsilon = '+ string(epsilon) +' and minpts = ' + string(minpts))
grid
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment